@extends('backend.layouts.app') @section('title', 'Flight Management | Edit Flight') @section('breadcrumb-links') @endsection @section('content') {{ Form::model($flight, ['route' => ['admin.flight.update', $flight->id], 'class' => 'form-horizontal', 'role' => 'form', 'method' => 'PUT']) }}

Flight Management Edit 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.update'), ['class' => 'btn btn-success btn-xs']) }}
@endsection