2018-05-19 03:50:20 +08:00
|
|
|
<h3 class="description">@lang('flights.search')</h3>
|
2020-02-20 23:49:15 +08:00
|
|
|
<div class="card border-blue-bottom">
|
|
|
|
<div class="card-body ml-1 mr-1" style="min-height: 0px; display: flex; justify-content: center; align-items: center;">
|
2019-10-30 01:03:04 +08:00
|
|
|
<div class="form-group search-form">
|
|
|
|
{{ Form::open([
|
|
|
|
'route' => 'frontend.flights.search',
|
|
|
|
'method' => 'GET',
|
|
|
|
'class'=>'form-inline'
|
|
|
|
]) }}
|
2020-02-20 23:49:15 +08:00
|
|
|
<div>
|
2019-10-30 01:03:04 +08:00
|
|
|
<p>@lang('flights.flightnumber')</p>
|
|
|
|
{{ Form::text('flight_number', null, ['class' => 'form-control']) }}
|
|
|
|
</div>
|
2017-12-05 04:21:46 +08:00
|
|
|
|
2020-02-20 23:49:15 +08:00
|
|
|
<div class="mt-1">
|
2019-10-30 01:03:04 +08:00
|
|
|
<p>@lang('airports.departure')</p>
|
2019-10-30 01:09:23 +08:00
|
|
|
{{ Form::select('dep_icao', $airports, null , ['class' => 'form-control select2']) }}
|
2019-10-30 01:03:04 +08:00
|
|
|
</div>
|
2017-12-05 04:21:46 +08:00
|
|
|
|
2020-02-20 23:49:15 +08:00
|
|
|
<div class="mt-1">
|
2019-10-30 01:03:04 +08:00
|
|
|
<p>@lang('airports.arrival')</p>
|
2019-10-30 01:09:23 +08:00
|
|
|
{{ Form::select('arr_icao', $airports, null , ['class' => 'form-control select2']) }}
|
2019-10-30 01:03:04 +08:00
|
|
|
</div>
|
2017-12-05 04:21:46 +08:00
|
|
|
|
2020-02-20 23:49:15 +08:00
|
|
|
<div class="mt-1">
|
2020-01-17 06:36:03 +08:00
|
|
|
<p>@lang('common.subfleet')</p>
|
|
|
|
{{ Form::select('subfleet_id', $subfleets, null , ['class' => 'form-control select2']) }}
|
|
|
|
</div>
|
|
|
|
|
2020-02-20 23:49:15 +08:00
|
|
|
<div class="clear mt-1" style="margin-top: 10px;">
|
2020-03-23 21:31:35 +08:00
|
|
|
{{ Form::submit(__('common.find'), ['class' => 'btn btn-outline-primary']) }}
|
2019-10-30 01:03:04 +08:00
|
|
|
<a href="{{ route('frontend.flights.index') }}">@lang('common.reset')</a>
|
|
|
|
</div>
|
|
|
|
{{ Form::close() }}
|
2017-12-05 04:21:46 +08:00
|
|
|
</div>
|
2019-10-30 01:03:04 +08:00
|
|
|
</div>
|
|
|
|
</div>
|