@extends('layout.padrao')
@include('include.attach_edit_list_multi_delete')
@section('title', 'Logistics 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('id' => 'form-bk-lgp', 'method' => 'post', 'files'=>true, 'enctype'=>'multipart/form-data', 'route'=>array('updateLoading', $register->id))) }}
{{method_field('PUT')}}
{{ csrf_field() }}
{{ Form::hidden('loadingType', 'LGP') }}
@yield('edit-firstPart')
@yield('edit-secoundPart')
@yield('edit-thirdPart')
@yield('attach_edit_list')
@include('loading.modalTimeline.modal_timeline')
@include('include.modal_updateEmail', ["rota" => ''])
@include('include.modal_transferEmail', ["rota" => ''])
@include('include.modal_changeBKP', ["rota" => 'LGP'])
@include('loading.loadingPlan.script')
@include('loading.loadingPlan.style')
@include('include.modal_deletar', ["rota" => "Logistics Plan"])
@endSection