Edit Category #{{ $category->id }}
Back
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
{!! Form::model($category, [
'method' => 'PATCH',
'url' => ['/admin/category', $category->id],
'files' => true
]) !!}
@include ('admin.category.form', ['submitButtonText' => 'Update'])
{!! Form::close() !!}