When a fare is assigned to a subfleet, the price, cost and capacity can be overridden, so you can create default values that will apply to most of your subfleets, and change them where they will differ.

{!! Form::label('code', 'Code:') !!} *
   How this fare class will show up on a ticket
{!! Form::text('code', null, ['class' => 'form-control']) !!}

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

{!! Form::label('name', 'Name:') !!} *
   The fare class name, E.g, "Economy" or "First"
{!! Form::text('name', null, ['class' => 'form-control']) !!}

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

{!! Form::label('price', 'Price:') !!}
   This is the price of a ticket for a passenger
{!! Form::text('price', null, ['class' => 'form-control', 'placeholder' => 0]) !!}

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

{!! Form::label('cost', 'Cost:') !!}
   The operating cost
{!! Form::text('cost', null, ['class' => 'form-control', 'placeholder' => 0]) !!}

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

{!! Form::label('capacity', 'Capacity:') !!}
   The number of seats available in this class.
{!! Form::text('capacity', null, ['class' => 'form-control', 'placeholder' => 0]) !!}

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

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

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

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