@extends('layout.padrao') @section('title', 'Payment Request') @section('content') @if($errors->any())

Algo deu errado. Verificar Campos Obrigatórios

@foreach($errors->all() as $error) {{ $error }}
@endforeach
@endif {{ Form::open(array('name'=>'enviar', 'method' => 'post', 'id'=> 'form-BL', 'files'=>true, 'enctype'=>'multipart/form-data', 'route'=>array('updateLoading', $register->id))) }} {{ csrf_field() }}
profile Pic

Booking information

Client: {{$register->clients->fantasyName}}

Booking: {{$register->booking}}

Product: {{$register->platforms->descricao}}

Carrier: {{$register->carriers->descricao}} - Vessel: {{$register->vessel->descricao}} - Voyage: {{$register->voyage}}

Destination Port: {{($register->code_of_ports1 ? $register->code_of_ports1->place . ',' . $register->code_of_ports1->country : '')}}

BL Date: {{ date( 'd-m-Y' , strtotime($register->etaPol))}}

BL No: {{ date( 'd-m-Y' , strtotime($register->etaPod))}}

Loading Port: {{$register->loading_ports->descricao }}

QUANTITY: {{ $register->containerQty}}

TYPE OF EQUIPMENT: {{ $register->container_types->descricao }}

{!! Form::checkbox('maritime_quote_codes_id', 1); !!} {!! Form::label('maritime_quote_codes_id', ' Capatazia Export', [ 'class' => 'pr-16 control-label', 'style' => 'font-size:13px;margin-left:4px']) !!}
{!! Form::checkbox('maritime_quote_codes_id', 1); !!} {!! Form::label('maritime_quote_codes_id', ' Declaration Charge', [ 'class' => 'pr-16 control-label', 'style' => 'font-size:13px;margin-left:4px']) !!}
{!! Form::label('price', ' Price', [ 'class' => 'pr-16 control-label', 'style' => 'font-size:13px;margin-left:72px']) !!}
{!! Form::label('price2', ' Price', [ 'class' => 'pr-16 control-label', 'style' => 'font-size:13px;margin-left:72px']) !!}
{!! Form::label('totalPriceSum', ' Total', [ 'class' => 'pr-16 control-label', 'style' => 'font-size:13px;margin-left:-100px']) !!}
{!! Form::label('totalPriceSum', ' Total', [ 'class' => 'pr-16 control-label', 'style' => 'font-size:13px;margin-left:-100px']) !!}
{!! Form::label('dollarRate', ' Dollar Rate', [ 'class' => 'pr-16 control-label', 'style' => 'font-size:13px;margin-left:-95px','step'=> "0.00001"]) !!}
{!! Form::label('totalPrice', ' Total Amount', [ 'class' => 'pr-16 control-label', 'style' => 'font-size:13px;margin-left:-95px']) !!}

Banking Details

{!! Form::checkbox('banking_details_id', 1); !!}
{!! Form::textarea('banking_details_id', $value = null, ['class' => 'form-control', 'rows' => 15, 'style' => 'margin-bottom:10px']) !!}
{!! Form::checkbox('banking_details_id2', 1); !!}
{!! Form::textarea('banking_details_id2', $value = null, ['class' => 'form-control', 'rows' => 15, 'style' => 'margin-bottom:10px']) !!}

Correction Fee {!! Form::checkbox('correctionFee', 1); !!}

{!! Form::textarea('correctionFee', $value = null, ['class' => 'form-control', 'rows' => 5, 'style' => 'margin-bottom:10px', 'placeholder' => 'Reason:']) !!}
{!! Form::label('correctionNumber', ' Correction Quantity', [ 'class' => 'pr-16 control-label' , 'style' => 'margin-left:20px']) !!} {!! Form::number('correctionNumber', null, ['class' => 'form-control ', 'style' => 'text-transform:uppercase;margin-bottom:10px;margin-right:10px;margin-left:15px' , 'placeholder' => 'Quantity' ]) !!}
{!! Form::label('correctionPrice', ' Correction Price', [ 'class' => 'pr-16 control-label' , 'style' => 'margin-left:20px']) !!} {!! Form::number('correctionPrice', null, ['class' => 'form-control ', 'style' => 'text-transform:uppercase;margin-bottom:10px;margin-left:15px' , 'placeholder' => 'Price']) !!}
{!! Form::label('dollarRate', ' Payment Date', [ 'class' => 'pr-16 control-label' , 'style' => 'margin-left:20px','step'=> "0.00001"]) !!} {!! Form::date('correctionPayDate', null, ['class' => 'form-control ', 'min' => '2019-01-01', 'max' => '2080-01-01', 'style' => 'text-transform:uppercase;margin-bottom:10px;margin-left:15px;width:92%' ]) !!}
{!! Form::label('chargeBuyer', ' Charge Buyer', [ 'class' => 'pr-16 control-label' , 'style' => 'margin-left:20px']) !!} {!! Form::text('chargeBuyer', null, ['class' => 'form-control ', 'style' => 'text-transform:uppercase;margin-bottom:10px;margin-right:10px;margin-left:15px' , 'placeholder' => 'YES/NO' ]) !!}
{!! Form::label('loss', ' Loss ', [ 'class' => 'pr-16 control-label' , 'style' => 'margin-left:20px']) !!} {!! Form::text('loss', null, ['class' => 'form-control ', 'style' => 'text-transform:uppercase;margin-bottom:10px;margin-left:15px' , 'placeholder' => 'YES/NO' ]) !!}
{!! Form::select('anexo_types_id[]',[''=>'-- Select Required ---']+$select['anexo_types_id'], null, ['class' => 'form-control', 'style'=>'height:40px']) !!}
{!! Form::label('aditionalComments', 'ADDITIONAL COMMENTS', [ 'class' => 'w-100 control-label' , 'style' => 'margin-left:10px']) !!} {!! Form::textarea('aditionalComments', $value = null, ['class' => 'form-control', 'rows' => 3 , 'style' => 'margin-left:10px;margin-bottom:10px']) !!}
@include('loading.loadingPlan.script') @endSection