@extends(layoutTenant()) @section('content')

Criar Projeto

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if (session('success'))
{{ session('success') }}
@endif @if (session('erro'))
{{ session('erro') }}
@endif
{!! Form::open([ 'url' => routeTenant('projetos.store'), 'enctype' => 'multipart/form-data', 'class' => 'form', 'id' => 'enviarimagem', ]) !!} @include('app.projeto._form')
{!! Form::submit('Criar Projeto', [ 'class' => 'btn btn-primary', 'style' => 'margin-top: 10px;', 'name' => 'criar', ]) !!}
{!! Form::close() !!} @endsection @section('post-script') {!! config('tenant.editor') !!} @endsection