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

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

{{ Form::label('image_url', 'Image Link:') }} {{ Form::text('image_url', null, ['class' => 'form-control']) }}

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

{{ Form::label('hours', 'Hours:') }} {{ Form::number('hours', null, ['class' => 'form-control']) }}

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

{{ Form::label('acars_base_pay_rate', 'ACARS Base Pay Rate:') }} {{ Form::number('acars_base_pay_rate', null, ['min' => 0, 'class' => 'form-control']) }}

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

@component('admin.components.info') Base rate, per-flight hour, for ACARS PIREPs. Can be adjusted via a multiplier on the subfleet. @endcomponent
{{ Form::label('manual_base_pay_rate', 'Manual Base Pay Rate:') }} {{ Form::number('manual_base_pay_rate', null, ['min' => 0, 'class' => 'form-control']) }}

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

@component('admin.components.info') Base rate, per-flight hour, for manually-filed PIREPs. Can be adjusted via a multiplier on the subfleet. @endcomponent
 Options
{{ Form::button('Save', ['type' => 'submit', 'class' => 'btn btn-success']) }}