{!! Form::model($testimonial, ['id' => 'committee_form','class'=>'row','method' => 'PATCH','route' => ['academic.testimonial.update', $testimonial->id]]) !!}
{{ csrf_field() }}
@method('PUT')
{!! Form::close() !!}
{!! Form::text('title', NULL, array('id' => 'title','required', 'class' => 'form-control', 'placeholder' => trans('Title'))) !!}
@if ($errors->has('title'))
{{ $errors->first('title') }}
@endif
{!! Form::select('status',status(), old('status'), array('id' => 'status', 'class' => 'form-control', 'placeholder' => trans('Choose'))) !!}
@if ($errors->has('status'))
{{ $errors->first('status') }}
@endif