Filter {{$panel}} History  

{{--{!! Form::open(['route' => $base_route,'method' => 'GET', 'class' => 'form-horizontal', "enctype" => "multipart/form-data"]) !!}--}}
{!! Form::label('user_type', 'Type', ['class' => 'col-sm-1 control-label']) !!}
{!! Form::select('user_type', ["0"=>"Select Type","1"=>"Student","2"=>"Staff"], null, ['class' => 'form-control']) !!}
{!! Form::label('reg_no', 'REG No.', ['class' => 'col-sm-1 control-label']) !!}
{!! Form::text('reg_no', null, ["placeholder" => "", "class" => "form-control border-form","autofocus"]) !!}
{!! Form::label('year', 'Year', ['class' => 'col-sm-1 control-label']) !!}
{!! Form::select('year', $data['years'], null, ['class' => 'form-control']) !!} @include('includes.form_fields_validation_message', ['name' => 'year'])
{!! Form::label('history_type', 'History Type', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::select('history_type', ["0"=>"Select History...", "Registration"=>"Registration", "Shift"=>"Shift","Leave"=>"Leave", "Renew"=>"Renew"], null, ['class' => 'form-control']) !!} @include('includes.form_fields_validation_message', ['name' => 'history_type'])
{!! Form::label('hostel', 'Hostel', ['class' => 'col-sm-1 control-label']) !!}
{!! Form::select('hostel', $data['hostels'], null, ['class' => 'form-control', "onChange" => "loadAllRooms(this)"]) !!} @include('includes.form_fields_validation_message', ['name' => 'hostel'])
{{--{!! Form::close() !!}--}}