@extends(layoutTenant()) @section('title') Criar Documento - Papel zero @php $pagina = "Documetos"; @endphp @endsection @section('content')
Adicionar novo Documento
@if($errors->all()) @endif @if (session('success'))
{{ session('success') }}
@endif @if (session('erro'))
{{ session('erro') }}
@endif
{!! Form::open(['url'=>routeTenant('documentos.store'),'enctype'=>'multipart/form-data','class'=>'needs-validation','id'=>'formulario']) !!} {!! Form::submit('Salvar ', ['class'=>'btn btn-primary']) !!}
{!! Form::close() !!}
@endsection @section('post-script') @endsection