2017-12-05 04:21:46 +08:00
|
|
|
<h2 class="description">search</h2>
|
|
|
|
<div class="card">
|
|
|
|
<div class="card-block" style="min-height: 0px">
|
|
|
|
<div class="form-group text-right">
|
2018-03-13 06:58:12 +08:00
|
|
|
{{ Form::open(['route' => 'frontend.flights.search', 'method' => 'GET', 'class'=>'form-inline pull-right']) }}
|
2017-12-05 04:21:46 +08:00
|
|
|
|
|
|
|
<div>
|
|
|
|
<p>Flight Number</p>
|
2018-03-13 06:58:12 +08:00
|
|
|
{{ Form::text('flight_number', null, ['class' => 'form-control']) }}
|
2017-12-05 04:21:46 +08:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<p>Departure Airport</p>
|
2018-03-13 06:58:12 +08:00
|
|
|
{{ Form::select('dep_icao', $airports, null , ['class' => 'form-control']) }}
|
2017-12-05 04:21:46 +08:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="">
|
|
|
|
<p>Arrival Airport</p>
|
2018-03-13 06:58:12 +08:00
|
|
|
{{ Form::select('arr_icao', $airports, null , ['class' => 'form-control']) }}
|
2017-12-05 04:21:46 +08:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<br />
|
|
|
|
<div class="">
|
2018-03-13 06:58:12 +08:00
|
|
|
{{ Form::submit('find', ['class' => 'btn btn-primary']) }}
|
|
|
|
<a href="{{ route('frontend.flights.index') }}">clear</a>
|
2017-12-05 04:21:46 +08:00
|
|
|
</div>
|
|
|
|
<br />
|
2018-03-13 06:58:12 +08:00
|
|
|
{{ Form::close() }}
|
2017-12-05 04:21:46 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|