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

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

{!! Form::label('type', 'Type:') !!} {!! Form::text('type', null, ['class' => 'form-control']) !!}

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

{!! Form::label('airline_id', 'Airline:') !!} {!! Form::select('airline_id', $airlines, null , ['class' => 'form-control select2']) !!}

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

{!! Form::label('fuel_type', 'Fuel Type:') !!} {!! Form::select('fuel_type', $fuel_types, null , ['class' => 'form-control select2']) !!}

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

{!! Form::label('ground_handling_multiplier', 'Ground Handling Multiplier:') !!} {!! Form::text('ground_handling_multiplier', null, ['class' => 'form-control']) !!}

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

@component('admin.components.info') This is the multiplier of the airport ground-handling cost to charge for aircraft in this subfleet, as a percentage. Defaults to 100. @endcomponent
{!! Form::button('Save', ['type' => 'submit', 'class' => 'btn btn-success']) !!} Cancel