@extends('layouts/horizontalLayout') @section('content')

Find My Event Photos

Event: {{ $event->name }}

@csrf
@if($error)
{{ $error }}
@endif @if($photos->count())

Matching Photos ({{ $photos->count() }})

@foreach($photos as $photo)
Event Photo
@endforeach
@elseif(request()->isMethod('post') && !$error)
No matching faces found in this event.
@endif
@endsection