#32 Cleanup of subfleet edit and linked from the aircraft screen

This commit is contained in:
Nabeel Shahzad
2017-07-02 15:11:27 -05:00
parent 9dc880d7d3
commit ddc2ed4d89
7 changed files with 55 additions and 34 deletions

View File

@@ -1,23 +1,25 @@
<!-- Airline Id Field -->
<div class="form-group col-sm-6">
<div class="form-group col-sm-4">
{!! Form::label('airline_id', 'Airline Id:') !!}
{!! Form::select('airline_id', $airlines, null , ['class' => 'form-control']) !!}
</div>
<!-- Name Field -->
<div class="form-group col-sm-6">
<div class="form-group col-sm-4">
{!! Form::label('name', 'Name:') !!}
{!! Form::text('name', null, ['class' => 'form-control']) !!}
</div>
<!-- Type Field -->
<div class="form-group col-sm-6">
<div class="form-group col-sm-4">
{!! Form::label('type', 'Type:') !!}
{!! Form::text('type', null, ['class' => 'form-control']) !!}
</div>
<!-- Submit Field -->
<div class="form-group col-sm-12">
<div class="pull-right">
{!! Form::submit('Save', ['class' => 'btn btn-primary']) !!}
<a href="{!! route('admin.subfleets.index') !!}" class="btn btn-default">Cancel</a>
</div>
</div>