@component('admin.components.info') Subfleets are aircraft groups. The "type" is a short name. Airlines always group aircraft together by feature, so 737s with winglets might have a type of "B.738-WL". You can create as many as you want, you need at least one, though. Read more about subfleets here. @endcomponent
{{ Form::label('type', 'Type:') }} {{ Form::text('type', null, ['class' => 'form-control']) }}

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

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

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

{{ 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