{{-- resources/views/settings/images.blade.php --}} @extends('layouts.app') @section('title', 'Property Photos') @section('page_title', 'Property Photos') @section('page_subtitle', 'Gallery images for marketplace and booking pages') @section('content') @include('settings.partials.nav')
Gallery {{ $images->count() }} photos
@if($images->isEmpty())

No photos yet

Add photos to showcase your property on the marketplace

@else
@foreach($images as $image)
Property photo @if($image->is_cover) Cover @endif
@if(!$image->is_cover)
@csrf @method('PUT') {{-- handled separately, skip --}}
@endif
@csrf @method('DELETE')
@endforeach
@endif
Upload Photos
@csrf
JPG, PNG or WebP. Up to 20 photos. Max 5MB each.
@if($images->count() > 0)
Tips:
The first photo uploaded becomes the cover image.
Recommended: landscape orientation, minimum 1200×800px.
@endif
@endsection