@extends('admin.app') @section('title', 'Edit Gallery') @section('content')
Edit Gallery
@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(session('success'))
{{ session('success') }}
@endif
@csrf @method('PUT') {{-- Category --}}
{{-- IMAGE EDIT --}} @if(!$gallery->youtube_url)

@if($gallery->image) @endif
@endif {{-- VIDEO EDIT --}} @if($gallery->youtube_url)
@endif {{-- Title --}}
{{-- Alt Text --}}
Back
@endsection