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

Airport Management Edit Airport

{{ Form::label('airport_code', 'Airport Code', ['class' => 'col-lg-2 control-label']) }}
{{ Form::label('airport', 'Airport', ['class' => 'col-lg-2 control-label']) }}
{{ Form::label('airport_nepali', 'Airport in Nepali', ['class' => 'col-lg-2 control-label']) }}
{{ link_to_route('admin.airport.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