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