@extends('admin.app') @section('title', 'Add Aircraft') @section('content')
@if(!filled($subfleets))

You must add a subfleet before you can add an aircraft!

@else {{ Form::open(['route' => 'admin.aircraft.store', 'autocomplete' => false]) }} @include('admin.aircraft.fields') {{ Form::close() }} @endif
@endsection