@extends('layouts.admin') @section('title',__('adminstaticwords.CreateGenre')) @section('content')

@can('genre.view') reply @endcan {{__('adminstaticwords.CreateGenre')}}

{!! Form::open(['method' => 'POST', 'action' => 'GenreController@store','files' => true]) !!}
{!! Form::label('name', __('adminstaticwords.Name')) !!} {!! Form::text('name', old('name'), ['class' => 'form-control','placeholder' => __('adminstaticwords.PleaseEnterGenreName')]) !!} {{ $errors->first('name') }}
{!! Form::label('image', __('adminstaticwords.GenreImage')) !!} {!! Form::file('image', ['class' => 'input-file', 'id'=>'image']) !!}

{{__('adminstaticwords.ChooseCustomImage')}}

{{ $errors->first('image') }}
{!! Form::close() !!}
@endsection