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('airport_id', 'Location:') }} {{ Form::select('airport_id', $airports, null, [ 'class' => 'form-control select2' ]) }}

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

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

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

{{ 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('registration', 'Registration:') }} {{ Form::text('registration', null, ['class' => 'form-control']) }}

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

{{ Form::label('mtow', 'Max Takeoff Weight (MTOW):') }} {{ Form::text('mtow', null, ['class' => 'form-control']) }}

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

{{ Form::label('zfw', 'Zero Fuel Weight (ZFW):') }} {{ Form::text('zfw', null, ['class' => 'form-control']) }}

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

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