@extends('layouts.app') @section('title', $pcn ? (($pcn->isModifiedPcnWorkspace()) ? 'Modified PCN — Prepare' : (($pcn->is_modified ?? false) && (bool) ($pcn->status ?? true) ? 'Modified PCN' : 'Edit Project Concept Note')) : 'Create Project Concept Note') @push('stylesheets') @include('project-concept-notes.partials.crud-styles') @endpush @section('contents') @php $record = $pcn; $formAction = $record ? route('project-concept-notes.update', ['project_concept_note' => $record->id]) : route('project-concept-notes.store'); $val = fn ($key, $default = '') => old($key, $record?->{$key} ?? $default); @endphp
@if ($errors->any()) @endif
@csrf @if ($record) @method('PUT') @endif

{{ ($pcn && $pcn->isModifiedPcnWorkspace()) ? 'Modified Project Concept Note' : 'Project Concept Note Form' }} @if($pcn && (($pcn->is_modified ?? false) || $pcn->isModifiedPcnWorkspace()) && !($pcn->is_revised ?? false)) Modified @endif

@if ($record) @endif
Project Concept
@include('project-concept-notes.partials.steps.step-1-basic') @include('project-concept-notes.partials.steps.step-2-background') @include('project-concept-notes.partials.steps.step-3-objectives') @include('project-concept-notes.partials.steps.step-4-framework') @include('project-concept-notes.partials.steps.step-5-cost-risks') @include('project-concept-notes.partials.steps.step-6-annexures') @include('project-concept-notes.partials.steps.step-7-signatures')
Page 1 of 7
@if (can('project-concept-notes', 'add') || can('project-concept-notes', 'edit')) @endif
@include('project-concept-notes.partials.pcn-submit-modal') @include('project-concept-notes.partials.ai-analyze-modal') @endsection @push('scripts') @include('project-concept-notes.partials.pcn-submit-signature-scripts') @include('project-concept-notes.partials.crud-scripts') @endpush