@include('Partials.sidebar')
@include('Partials.header')

All Projects

{{-- ── Flash Messages ───────────────────────── --}} @if(session('success'))
@endif @if(session('info'))
@endif @if(session('error'))
@endif {{-- ── Missing Images Panel (super_admin only) ── --}} @if($role === 'super_admin') @php $missing = $ProjectsDisplay->filter(fn($p) => empty($p->logo_file) || empty($p->project_image_file)); @endphp @if($missing->count())
{{ $missing->count() }} project(s) missing images — upload below
@csrf
@foreach($missing as $i => $project) @endforeach
Project Location Logo 260×100px Project Image 1600×800px
{{ $project->project_name }} {{ $project->location ?? '—' }} @if(!empty($project->logo_file)) Logo Uploaded @else
LOGO SVG/PNG/JPG

Missing @endif
@if(!empty($project->project_image_file)) Project Image Uploaded @else
1600 × 800px

Missing @endif
@endif @endif
{{-- ── Add / Import cards (super_admin only) ── --}} @if($role === 'super_admin')
Add Single Project
Fill in the form manually
Add
Bulk Import Projects
Columns: project_name, place_name, latitude, longitude   Download template
@csrf
@endif

All Projects

Manage and view all registered projects below.
{{-- Controls --}}
{{-- Table --}}
@if($role === 'super_admin') @endif
{{-- Pagination --}}
@include('Partials.footer')