@extends('layout.padrao') @section('title', 'Booking Plan') @section('content') @include('loading.loadingPlan.modules') @if($errors->any())

Algo deu errado. Verificar Campos Obrigatórios

@foreach($errors->all() as $error) {{ $error }}
@endforeach
@else @endif {{ Form::open(array('method' => 'post', 'files'=>true, 'enctype'=>'multipart/form-data', 'route'=>'storeLoading', 'id'=>'loading_create')) }} {{ csrf_field() }}
{{ Form::hidden('loadingType', 'BKP') }} @yield('create-firstPart')
@yield('create-secoundPart')
@yield('create-thirdPart')
{!! Form::label('cargo_types_id', 'Cargo Type', [ 'class' => 'w-100 control-label']) !!} {!! Form::select('cargo_types_id', [''=>'------ Select Required ------']+ $select['cargoType'], null, ['class' => 'form-control']) !!}
{!! Form::label('u_n_s_id', 'U.N.', [ 'class' => 'w-100 control-label']) !!} {!! Form::select('u_n_s_id', [''=>'------ Select Required ------']+ $select['UN'], null, ['class' => 'form-control']) !!}
{!! Form::label('temperature', 'Temperature (°C)', [ 'class' => 'w-100 control-label']) !!} {!! Form::text('temperature', null, ['class' => 'form-control']) !!}
{!! Form::label('foodgrade', 'Foodgrade', [ 'class' => 'w-100 control-label']) !!} {!! Form::select('foodgrade', [''=>'- Select Required -']+ $select['foodgrade'], null, ['class' => 'form-control']) !!}

IMO Cutoff deve ser menor que ETD POL

Tank Owner

{!! Form::label('tank_owners_id', 'Tank Owner', [ 'class' => 'w-100 control-label' , 'id' => 'tankOwnerLabel']) !!} {!! Form::select('tank_owners_id[]', [''=>'------ Select Required ------']+$select['tankOwner'], old('tank_owners_id'), ['class' => 'form-control']) !!}
{!! Form::label('flexi_suppliers_id', 'Flexi Supplier', [ 'class' => 'w-100 control-label']) !!} {!! Form::select('flexi_suppliers_id[]', [''=>'------ Select Required ------']+$select['flexiSupplier'], old('tank_owners_id'), ['class' => 'form-control']) !!}
{!! Form::label('emptyReleaseQty', 'Quantity', [ 'class' => 'w-100 control-label']) !!} {!! Form::number("emptyReleaseQty[]", null,['class' => 'form-control']) !!}
{{ Form::hidden('emptyReleaseDate[]', null) }}
{!! Form::label('isotank_type', 'Isotank Type', [ 'class' => 'w-100 control-label' , 'id' => 'isotankType']) !!} {!! Form::select('isotank_type', [''=>'------ Select Required ------']+$select['isotankTypes'], old('isotank_type',null), ['class' => 'form-control']) !!}
{!! Form::label('isotank_preparation', 'Isotank Preparation', [ 'class' => 'w-100 control-label' , 'id' => 'isotankPreparation']) !!} {!! Form::select('isotank_preparation', [''=>'------ Select Required ------']+$select['isotankPreparation'], old('isotank_preparation',null), ['class' => 'form-control']) !!}
{!! Form::label('isotankDetails', 'Isotank Details', [ 'class' => 'w-100 control-label', 'id'=>'labelTank' ]) !!} {!! Form::textarea('isotankDetails', null, ['class' => 'form-control textsAreaSuper', 'rows' => 7, 'sytle' => 'text-transform:uppercase;' , 'id' => 'isoTankComments' ]) !!}

*Preencher apenas quando dados do(s) Equipamento(s) estiverem disponíveis

@yield('create-commentsAndAttachment') @include('include.btn_registrar') @include('loading.loadingPlan.scriptBk') @include('loading.loadingPlan.style') @endSection