@extends('dash.layouts.app') @push('title') Gallery Edit @endpush @push('head') @endpush @section('content')
{{@$gallery->title}}
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('patch')
Title ** {{ $errors->first('title') }}
Long Description {{ $errors->first('desc') }}
Thumbnail {{ $errors->first('thumbnail') }} @if(!empty($gallery->thumbnail))
img @else No Image Found @endif
Banner {{ $errors->first('banner') }} @if(!empty($gallery->banner))
img @else No Image Found @endif
Status
@endsection