@extends('layouts.master') @section('title',__('Edit Genre').''." - $genre->name") @section('breadcum') @endsection @section('maincontent')
@if ($errors->any()) @endif
{{ __('Back') }}
{{__('Edit Genre')}}
{!! Form::model($genre, ['method' => 'PATCH', 'action' => ['GenreController@update', $genre->id],'files' => true]) !!}
{{ $errors->first('name') }}
{!! Form::label('image', __('Genre Image')) !!}
@if(isset($genre->image) && $genre->image != NULL) @else @endif
{{ $errors->first('image') }}
{!! Form::close() !!}
@endsection @section('script') @endsection