@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' => 'PATCH', 'route' => ['logistic.order.vessel.update', $vessel->id], 'class' => 'form-vertical', 'id' => 'myform', 'files' => true ]) !!} @include ('logistic.order.vessel.form', ['submitButtonText' => 'Update']) {!! Form::close() !!} @endsection
{{ Session::get('flash_message') }}