Subfleet and Status
{{ Form::label('subfleet_id', 'Subfleet:') }} {{ Form::select('subfleet_id', $subfleets, $subfleet_id ?? null, [ 'class' => 'form-control select2', 'placeholder' => 'Select Subfleet' ]) }}

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

{{ Form::label('status', 'Status:') }} {{ Form::select('status', $statuses, null, ['class' => 'form-control select2', 'placeholder' => 'Select Status']) }}

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

{{ Form::label('hub_id', 'Home:') }} {{ Form::select('hub_id', $hubs, null, ['class' => 'form-control airport_search']) }}

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

{{ Form::label('airport_id', 'Location:') }} {{ Form::select('airport_id', $airports, null, ['class' => 'form-control airport_search']) }}

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

 Aircraft Information View list of IATA and ICAO Type Designators
{{ Form::label('name', 'Name:') }} * {{ Form::text('name', null, ['class' => 'form-control']) }}

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

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

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

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

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

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

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

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

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

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

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

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

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

{{ Form::label('hex_code', 'Hex Code:') }} {{ Form::text('hex_code', null, ['class' => 'form-control']) }}

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

 Certified Weights ({{ setting('units.weight') }})
{{ Form::label('dow', 'Dry Operating Weight (DOW/OEW):') }}

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

{{ Form::label('zfw', 'Max Zero Fuel Weight (MZFW):') }}

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

{{ Form::label('mtow', 'Max Takeoff Weight (MTOW):') }}

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

{{ Form::label('mlw', 'Max Landing Weight (MLW):') }}

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

{{ Form::button('Save', ['type' => 'submit', 'class' => 'btn btn-success']) }}