@extends('layouts.master') @section('title',__('Create Genre')) @section('breadcum') @endsection @section('maincontent')
@if ($errors->any()) @endif
{{ __('Back') }}
{{__('Create Genre')}}
{!! Form::open(['method' => 'POST', 'action' => 'GenreController@store', 'files' => true]) !!}
{{ $errors->first('name') }}
{!! Form::label('image', __('Genre Image')) !!}
{{ $errors->first('image') }}
{!! Form::close() !!}
@endsection @section('script') @endsection