@extends('layouts.admin') @section('title', 'Manage Album Photos') @section('header_title', 'Photos in Album') @section('content')

Upload Photo

@csrf
Recommended size: 1024x768px or similar. (max 3MB).

Album: {{ $album->albumName }}

Back to Albums
@forelse($photos as $photo)
{{ $photo->gphotoCourse }}
{{ $photo->gphotoCourse ?: 'No Caption' }}
@empty

No photos in this album yet. Upload photos using the left sidebar panel.

@endforelse
@endsection