@include('Partials.sidebar') @include('Partials.header') Projects › Projects › Edit {{-- ── Flash Messages ───────────────────────── --}} @if(session('success')) {{ session('success') }} @endif @if(session('error')) {{ session('error') }} @endif {{-- ── Validation Errors ────────────────────── --}} @if($errors->any()) @foreach($errors->all() as $error) {{ $error }} @endforeach @endif Update Project @csrf @method('PUT') {{-- Project Name --}} Project Name: {{-- Project Location --}} Project Location: Leave unchanged to keep the current location. {{-- Current Logo + Replace --}} Current Logo: @if($project->logo_file) @else No logo uploaded yet. @endif Replace Logo Leave empty to keep the current logo. {{-- Current Project Image + Replace --}} Current Project Image: @if($project->project_image_file) @else No image uploaded yet. @endif Replace Image Leave empty to keep the current image. Update Project Cancel @include('Partials.footer')