@extends('layouts.panel.base') @section('airline-active', 'kt-menu__item--active') @section('title', 'Agregar Aerolíneas') @section('content')

Aerolíneas

Agregar Aerolínea

{!! Form::open(['route' => ['airlines.store'], 'method' => 'POST', 'class'=>"kt-form", 'id' => 'airline_form']) !!} {{ csrf_field() }} @if(count($errors) > 0) @endif @if (Session::has('error')) @endif
{{ Form::text('code', null, array('class'=>'form-control', 'id'=>'code')) }}
{{ Form::text('name', null, array('class'=>'form-control', 'id'=>'name')) }}
{!! Form::close(); !!}
@endsection @section('js') @endsection