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

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

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

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

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

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

@component('admin.components.info') This is the base rate of pay, per-flight hour, for this rank. This can be adjusted via a multiplier on the subfleet. @endcomponent
{!! Form::label('hours', 'Hours:') !!} {!! Form::number('hours', null, ['class' => 'form-control']) !!}

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

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