@extends('layouts.admin-club') @section('club-admin-content')

Gallery

Manage your club photos and media

@if(isset($images) && count($images) > 0)
@foreach($images as $image)
{{ $image->caption ?? 'Gallery image' }}
@if($image->caption)

{{ $image->caption }}

@endif
@endforeach
@else
No images yet

Upload photos to showcase your club

@endif
@endsection