{!! Form::open(['method' => 'POST', 'class' => 'form-horizontal', 'id' => 'frmExpirySummary', 'url' => url("staff-report?tab=expiry_summary") ]) !!}
@if (airlineModule())
{!! Form::select('department', $departments, null, ['class'=>'singleselect', 'id'=>'department']) !!}
@else
{!! Form::select('airport', ["" => "All Stations"] + $airports, $selectedAirports, ['class'=>'singleselect', 'id'=>'airport']) !!}
@endif
{!! Form::select('expiry_type', $expiryTypes, \request("expiry_type"), ['required', 'class'=>'singleselect', 'id'=>'']) !!}
{!! Form::submit("Submit", ["class" => "btn btn-primary btn-sm"]) !!} {{-- {!! Form::hidden("tab", "expiry_summary") !!}--}}
{!! Form::close() !!}