{!! 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::number('lat', null, ['class' => 'form-control', 'step' => '0.000001', 'rv-value' => 'airport.lat']) !!}

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

{!! Form::label('lon', 'Longitude:') !!} * {!! Form::number('lon', null, ['class' => 'form-control', 'step' => '0.000001', '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:') !!} @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::number('ground_handling_cost', null, ['class' => 'form-control']) !!}

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

{!! Form::label('hub', 'Hub:') !!} {!! Form::hidden('hub', 0) !!} {!! Form::checkbox('hub', null) !!}
{!! Form::button('Save', ['type' => 'submit', 'class' => 'btn btn-success']) !!} Cancel