@extends('layout.padrao') @section('title', 'Flexi Stuffing - Saida') @section('content') @if($errors->any())
@foreach($errors->all() as $error) {{ $error }}
@endforeach
@endif {{ Form::open(array('method' => 'post', 'files'=>true, 'enctype'=>'multipart/form-data', 'route'=>'storeFlexiStockOut' , 'id'=>'flexiStockSaida_create')) }} {{ csrf_field() }} {{ Form::hidden('loadingType' , 'FSS') }}
{!! Form::label('booking', 'Booking', [ 'class' => 'w-100 control-label', ]) !!} {!! Form::text('booking', old('booking[]',null) , ['class' => 'form-control dynamic2', 'data-dependent'=>'shipper']) !!}
{!! Form::label('shipper', 'Exportador', [ 'class' => 'w-100 control-label', ]) !!} {!! Form::select('shipper', $select['shipper'] , old('shipper[]',null), ['class' => 'form-control shipper', 'readonly' => 'readonly']) !!}
{!! Form::label('flexiTank', '#FlexiTank', [ 'class' => 'w-100 control-label', ]) !!} {!! Form::text('flexiTank[]', old('flexiTank[]',null) , ['class' => 'form-control flexiTank']) !!}
{!! Form::label('fcl', '#FCL', [ 'class' => 'w-100 control-label', ]) !!} {!! Form::text('fcl[]', old('fcl[]',null) , ['class' => 'form-control fcl']) !!}
{!! Form::label('volume', 'Volume (Ltrs.)', [ 'class' => 'w-100 control-label']) !!} {!! Form::number('volume[]', null , ['class' => 'form-control ']) !!}
{!! Form::label('montagemDate', 'Montagem Data' , [ 'class' => 'w-100 control-label']) !!} {!! Form::date('montagemDate[]', old('montagemDate[]',null), ['class' => 'form-control', 'min' => '2019-01-01', 'max' => '2080-01-01']) !!}
{!! Form::label('flexiSupplier', 'Fornecedor', [ 'class' => 'w-100 control-label', ]) !!} {!! Form::select('flexiSupplier[]', $select['flexiSupplier'] , old('flexiSupplier[]',null), ['class' => 'form-control ', 'id' => 'flexiSupplier']) !!}
{!! Form::label('stuffingTerminal', 'Stuffing Terminal', [ 'class' => 'w-100 control-label', ]) !!} {!! Form::select('stuffingTerminal[]', $select['stuffingTerminal'] , old('stuffingTerminal[]',null), ['class' => 'form-control ', 'id' => 'stuffingTerminal']) !!}
{!! Form::label('comments', 'Comentários', [ 'class' => 'w-100 control-label', ]) !!} {!! Form::textarea('comments', null , ['class' => 'form-control ', 'rows' => '4', 'placeholder' =>'Comentários' ,'id' => 'comments']) !!}

Attachment

{!! Form::select('anexo_types_id[]',[''=>'Select Required']+$select['anexo_types_id'], null, ['class' => 'form-control', 'style'=>'height:40px']) !!}
{{ Form::hidden('typeStock', 'Out') }}
@include('include.btn_registrar') @include('flexiStock.script') @endSection