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