@extends('layouts.template') @section('content')

Order Booking : @if(Auth::user()->logistic_type == '2') Export @endif @if(Auth::user()->logistic_type == '1') Import @endif

@if(Session::has('flash_message'))

{{ Session::get('flash_message') }}

@endif

Vessel Records

{!! Form::model($vessel, [ 'method' => 'POST', 'route' => ['logistic.order.vessel.storecopy'], 'class' => 'form-vertical', 'id' => 'myform', 'files' => true ]) !!} @include ('logistic.order.vessel.form', ['submitButtonText' => 'Submit']) {!! Form::close() !!}
@endsection