@extends('backend.layouts.app') @section('title', 'Flight Schedule Management | Create Flight Schedule') @section('breadcrumb-links') @endsection @section('after-styles') {{Html::style('css/bootstrap-datepicker.min.css')}} @endsection @section('content')
{{csrf_field()}}

Flight Schedule Management Create Flight Schedule

{{ Form::label('flight_type', 'Flight Type', ['class' => 'col-lg-2 control-label']) }}
{{ Form::label('flight_date', 'Flight Date', ['class' => 'col-lg-2 control-label']) }}
{{ Form::label('airline', 'Airline', ['class' => 'col-lg-2 control-label']) }}
{{ Form::label('flight_number', 'Flight Number', ['class' => 'col-lg-2 control-label']) }}
{{ Form::label('origin', 'Origin/Destination', ['class' => 'col-lg-2 control-label']) }}
{{ Form::label('STA', 'STA/STD', ['class' => 'col-lg-2 control-label']) }}
(hh:mm)
{{ Form::label('ETA', 'ETA/ETD', ['class' => 'col-lg-2 control-label']) }}
(hh:mm)
{{ Form::label('flight_status', 'Flight Status', ['class' => 'col-lg-2 control-label']) }}
{{ link_to_route('admin.schedule.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 @section('after-scripts') @endsection