{!! Form::model($gallery, ['id' => 'committee_form','class'=>'row','method' => 'PATCH','route' => ['academic.gallery.update', $gallery->id]]) !!}
@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::textarea('description', NULL, array('rows' => '5','id' => 'description', 'required', 'class' => 'form-control', 'placeholder' => trans('Description'),'rows'=>'3')) !!}
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif
{!! Form::select('status',status(), old('status'), array('id' => 'status', 'class' => 'form-control', 'placeholder' => trans('Choose'))) !!}
@if ($errors->has('description'))
{{ $errors->first('status') }}
@endif