@extends('layouts.admin.theme') @section('title', env('APP_NAME') . ' :: ' . __('Novo projeto')) @section('content')
@php $headLine = " " . e(__('Novo projeto')); @endphp @php $listQuery = $filterParams ?? []; @endphp @include('components.buttons._headLineButtonsBackAdd', [ 'headLine' => $headLine, 'routeBack' => 'admin.cronogramas.dashboard', 'routeBackParams' => $listQuery, 'nameBack' => __('Voltar'), 'permission' => 'GERENCIADOR_DE_CRONOGRAMAS', ])
@include('errors.messageFlash')
@csrf
@error('name')
{{ $message }}
@enderror
@error('description')
{{ $message }}
@enderror
@error('start_date')
{{ $message }}
@enderror
@error('planned_end_date')
{{ $message }}
@enderror
@include('components.cronogramas.project-scopes-form', [ 'scopeOptions' => $scopeOptions ?? ['structures' => collect(), 'unidades' => collect(), 'empresas' => collect()], 'selectedScopes' => $selectedScopes ?? ['structures' => [], 'unidades' => [], 'empresas' => []], ])
@endsection @push('after-scripts') @endpush