1725ea5a9e
* Minor CSS Changes Minor CSS changes to the original. #1: Added button to show own bids. #2: Added padding to Search buttons and fields #3: Fixed search fields leaving the search box * Minor CSS Changes to Search Fields Search Fields have been changed from round to square for better look.
38 lines
1.5 KiB
PHP
38 lines
1.5 KiB
PHP
<h3 class="description">@lang('flights.search')</h3>
|
|
<div class="card pull-right">
|
|
<div class="card-block" style="min-height: 0px">
|
|
<div class="form-group">
|
|
{{ Form::open([
|
|
'route' => 'frontend.flights.search',
|
|
'method' => 'GET',
|
|
'class'=>'form-inline'
|
|
]) }}
|
|
<style>
|
|
.form-group .form-control {
|
|
width: 250px;
|
|
border-radius: 5px;
|
|
}
|
|
</style>
|
|
<div style="margin-left: 5px;">
|
|
<p>@lang('flights.flightnumber')</p>
|
|
{{ Form::text('flight_number', null, ['class' => 'form-control']) }}
|
|
</div>
|
|
|
|
<div style="margin-top: 10px; margin-left: 5px;">
|
|
<p>@lang('airports.departure')</p>
|
|
{{ Form::select('dep_icao', $airports, null , ['class' => 'form-control']) }}
|
|
</div>
|
|
|
|
<div style="margin-top: 10px; margin-left: 5px;">
|
|
<p>@lang('airports.arrival')</p>
|
|
{{ Form::select('arr_icao', $airports, null , ['class' => 'form-control']) }}
|
|
</div>
|
|
|
|
<div class="clear" style="margin-top: 10px; margin-left: 5px;">
|
|
{{ Form::submit(__('common.find'), ['class' => 'btn btn-primary']) }}
|
|
<a href="{{ route('frontend.flights.index') }}">@lang('common.reset')</a>
|
|
</div>
|
|
{{ Form::close() }}
|
|
</div>
|
|
</div>
|
|
</div> |