@extends('layouts.admin.theme') @section('title', env('APP_NAME') . ' :: ' . __('Editar projeto')) @section('content')
@php $headLine = " " . e(__('Editar projeto')); @endphp @php $listQuery = $filterParams ?? []; @endphp @include('components.buttons._headLineButtonsBackAdd', [ 'headLine' => $headLine, 'routeBack' => 'admin.cronogramas.projetos.show', 'routeBackParams' => array_merge(['project' => $project->id], $listQuery), 'nameBack' => __('Voltar'), 'permission' => 'GERENCIADOR_DE_CRONOGRAMAS', ])
@include('errors.messageFlash')
@csrf @method('put') @include('components.cronogramas.persist-query', ['params' => $listQuery])
@error('name')
{{ $message }}
@enderror
@error('description')
{{ $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