Filter Certificate History
@include('student.includes.search_form')
{!! 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('history_type', 'History Type', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::select('history_type', [""=>"Select History...", "Created"=>"Created", "Updated"=>"Updated","Delete"=>"Delete"], null, ['class' => 'form-control']) !!} @include('includes.form_fields_validation_message', ['name' => 'history_type'])
{!! Form::label('date', 'Date', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('start_date', null, ["placeholder" => "YYYY-MM-DD", "class" => "input-sm form-control border-form input-mask-date date-picker", "data-date-format" => "yyyy-mm-dd"]) !!}
{!! Form::text('end_date', null, ["placeholder" => "YYYY-MM-DD", "class" => "input-sm form-control border-form input-mask-date date-picker", "data-date-format" => "yyyy-mm-dd"]) !!} @include('includes.form_fields_validation_message', ['name' => 'start_date']) @include('includes.form_fields_validation_message', ['name' => 'end_date'])
Filter