@extends('backend.layouts.app') @section('title', 'Flight Management | Create Flight') @section('breadcrumb-links') @endsection @section('content') {{ Form::open(['route' => 'admin.flight.store', 'class' => 'form-horizontal', 'role' => 'form', 'method' => 'post']) }}

Flight Management Create Flight

{{ Form::label('flight_code', 'Flight Code', ['class' => 'col-lg-2 control-label']) }}
{{ Form::label('flight_type', 'Flight Type', ['class' => 'col-lg-2 control-label']) }}
{{ Form::label('airline', 'Airline', ['class' => 'col-lg-2 control-label']) }}
{{ link_to_route('admin.flight.index', trans('buttons.general.cancel'), [], ['class' => 'btn btn-danger btn-xs']) }}
{{ Form::submit(trans('buttons.general.crud.create'), ['class' => 'btn btn-success btn-xs']) }}
@endsection