@extends('admin.layouts.app') @section('title', 'Edit Project') @section('breadcrumb')
  • Projects
  • Edit Project
  • @endsection @section('heading', 'Edit Project') @section('subheading', 'Update project details.') @section('content')
    @csrf @method('PUT') @if (session('success'))
    {{ session('success') }}
    @endif {{-- Section 1: Project Information --}}

    Project Information

    @error('title')

    {{ $message }}

    @enderror
    {{-- Section 2: Location --}}

    Location

    {{-- Section 3: Unit Details --}}

    Unit Details

    {{-- Section 4: Pricing --}}

    Pricing

    {{-- Section 5: RERA & Legal --}}

    RERA & Legal

    {{-- Section 6: Timeline --}}

    Timeline

    {{-- Section 7: Media --}}

    Media

    @if($project->featured_image_url)
    @endif
    @if($project->images->isNotEmpty())

    {{ $project->images->count() }} image(s). Add more below.

    @endif
    @if($agents->isNotEmpty())
    @endif
    {{-- Form Actions --}}
    Cancel
    @endsection