@extends('admin.app') @section('content')

Edit Project

{{-- Validation Errors --}} @if($errors->any())
@endif
@csrf @method('PUT') {{-- Project Title --}}
{{-- Project Status --}}
{{-- Property Type --}}
{{-- Location --}}
{{-- Total Area --}}
{{-- Published At --}}

{{-- Card Image --}}
@if($project->card_image)
Current Card Image
Current image
@endif Leave empty to keep current image. Recommended size: 400x300px
{{-- Banner Image --}}
@if($project->banner_image)
Current Banner Image
Current image
@endif Leave empty to keep current image. Recommended size: 1600x600px
{{-- Banner Alt Text --}}

{{-- Project Content --}}

{{-- Gallery Images --}}
@if($project->gallery_images)
Current Images:
@foreach(json_decode($project->gallery_images, true) as $image)
Gallery Image
@endforeach
@endif Leave empty to keep current images. You can select multiple images (Hold Ctrl/Cmd to select multiple)
{{-- YouTube URL --}}
{{-- Brochure PDF --}}
@if($project->brochure) @endif Leave empty to keep current brochure

{{-- FAQs --}}
Frequently Asked Questions (FAQ)
@php $faqs = json_decode($project->faqs, true) ?? []; @endphp @if(empty($faqs))
@else @foreach($faqs as $faq)
@endforeach @endif

{{-- SEO & Publishing --}}
SEO & Publishing
{{-- SEO Title --}}
{{-- Meta Tags --}}
{{-- Schema --}}
{{-- Status --}}
Back
@endsection @push('scripts') @endpush