@extends('layouts.admin') @section('title','Gallery') @section('page-title','Gallery') @section('content')
Add Image
@csrf @if($errors->any())
{{ $errors->first() }}
@endif {{-- Main image upload --}}
🖼
Click or drag & drop an image here
JPG, PNG, WebP — max 8 MB
{{-- Before image upload (hidden until checkbox ticked) --}}
Gallery ({{ $images->total() }} images)
@forelse($images as $img)
{{ $img->caption }}
@csrf @method('DELETE')
@if($img->is_before_after)
B&A
@endif @if($img->caption)
{{ Str::limit($img->caption,30) }}
@endif
@empty
No images yet.
@endforelse
{{ $images->links() }}
@push('scripts') @endpush @endsection