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