@extends('layout.padrao') @section('title', 'Flexi Stock - Entrada') @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'=>'storeFlexiStock' , 'id'=>'flexiStockEntrada_create')) }} {{ csrf_field() }} {{ Form::hidden('loadingType' , 'FSE') }}
{!! Form::label('dateIn', 'Data Entrada', [ 'class' => 'w-100 control-label']) !!} {!! Form::date('dateIn[]', null, ['class' => 'form-control', 'min' => '2019-01-01', 'max' => '2080-01-01']) !!}
{!! Form::label('flexiTank', '#FlexiTank', [ 'class' => 'w-100 control-label', ]) !!} {!! Form::text('flexiTank[]', null , ['class' => 'form-control flexiTank']) !!}
{!! Form::label('flexiSupplier', 'Fornecedor', [ 'class' => 'w-100 control-label', ]) !!} {!! Form::select('flexiSupplier[]', $select['flexiSupplier'] , null, ['class' => 'form-control flexiSupplierHold', 'id' => 'flexiSupplier']) !!}
{!! Form::label('volume', 'Volume (Ltrs.)', [ 'class' => 'w-100 control-label']) !!} {!! Form::number('volume[]', null , ['class' => 'form-control ']) !!}
{!! Form::label('stuffingTerminal', 'Stuffing Terminal', [ 'class' => 'w-100 control-label', ]) !!} {!! Form::select('stuffingTerminal[]', $select['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', 'In') }}
@include('include.btn_registrar') @include('flexiStock.script') @endSection