@extends('admin/layout') @section('content')

Edit Photo

Edit Photo Form

@csrf
@error('title')

{{ $message }}

@enderror
@error('image')

{{ $message }}

@enderror
@if ($photo->image_url) Current image @endif
@error('category_id')

{{ $message }}

@enderror
@error('privacy_status')

{{ $message }}

@enderror
@foreach ($availableTags as $tag) {{ $tag->tag_name }} @endforeach
@foreach ($photo->tags as $tag) {{ $tag->tag_name }} @endforeach
@endsection