{!! Form::open(['class' => 'form-inline', 'method' => 'GET', 'id' => 'formOPS']) !!}
{!! Form::select('airport[]', $airports, \request()->get('airport'), ['multiple'=>'multiple', 'class'=>'multiselect_search', 'id'=>'airport']) !!}
{!! Form::select('period', $periods, \request("period"), ['class'=>'multiselect_search']) !!}
@php $fromToSelected = !\request()->has('dateSearch') || \request()->get('dateSearch') == 'fromTo' @endphp
{!! Form::text('dateFrom', $fromToSelected ? $dateFrom : $dateYesterday, ['class'=>'form-control dateFrom myinput', 'placeholder'=>'From Date', 'id'=>'from_date']) !!} {!! Form::text('dateTo', $fromToSelected ? $dateTo : $dateYesterday, ['class'=>'form-control dateTo myinput', 'placeholder' => 'To Date', 'id'=>'to_date']) !!}
{{-- --}} {{--
--}} {{-- {!! Form::select('bi_month', $biMonths, \request()->get('bi_month'), ['class'=>'singleselect', 'id'=>'bi_month']) !!}--}} {{--
--}} {{--
--}} {{--
--}} {{-- --}}
{!! Form::select('month[]', $monthNames, $currentMonth, ['multiple'=>'multiple', 'class'=>'multiselect', 'id'=>'month']) !!}
{!! Form::select('year[]', $years, getSelectedYear(), ['multiple'=>'multiple', 'class'=>'multiselect', 'id'=>'period']) !!}
{{ Form::hidden("form", 1) }}
{!! Form::close() !!}