{{ Form::label('icao', 'ICAO:') }} * Lookup {{ Form::text('icao', null, [ 'id' => 'airport_icao', 'class' => 'form-control' ]) }}

{{ $errors->first('icao') }}

{{ Form::label('iata', 'IATA:') }} {{ Form::text('iata', null, ['class' => 'form-control']) }}

{{ $errors->first('iata') }}

{{ Form::label('name', 'Name:') }} * {{ Form::text('name', null, ['class' => 'form-control']) }}

{{ $errors->first('name') }}

{{ Form::label('lat', 'Latitude:') }} * {{ Form::text('lat', null, ['class' => 'form-control', 'rv-value' => 'airport.lat']) }}

{{ $errors->first('lat') }}

{{ Form::label('lon', 'Longitude:') }} * {{ Form::text('lon', null, ['class' => 'form-control', 'rv-value' => 'airport.lon']) }}

{{ $errors->first('lon') }}

{{ Form::label('country', 'Country:') }} {{ Form::text('country', null, ['class' => 'form-control']) }}

{{ $errors->first('country') }}

{{ Form::label('location', 'Location:') }} {{ Form::text('location', null, ['class' => 'form-control']) }}

{{ $errors->first('location') }}

{{ Form::label('timezone', 'Timezone:') }} {{ Form::select('timezone', $timezones, null, ['id' => 'timezone', 'class' => 'select2']) }}

{{ $errors->first('timezone') }}

{{ Form::label('ground_handling_cost', 'Ground Handling Cost:') }} {{ Form::number('ground_handling_cost', null, ['class' => 'form-control', 'step' => '0.01']) }}

{{ $errors->first('ground_handling_cost') }}

@component('admin.components.info') This is the base rate per-flight. A multiplier for this rate can be set in the subfleet, so you can modulate those costs from there. @endcomponent
{{ Form::label('fuel_jeta_cost', 'Jet A Fuel Cost:') }} {{ Form::number('fuel_jeta_cost', null, ['class' => 'form-control', 'step' => '0.01']) }}

{{ $errors->first('fuel_jeta_cost') }}

@component('admin.components.info') This is the cost per {{ config('phpvms.internal_units.fuel') }} @endcomponent
{{ Form::label('hub', 'Hub:') }} {{ Form::hidden('hub', 0) }} {{ Form::checkbox('hub', null) }}
{{ Form::button('Save', ['type' => 'submit', 'class' => 'btn btn-success']) }} Cancel