@extends('backends.layouts.master_layout') @section('title','Gallery') @section('page_heading','Gallery') @section('content')
@include('backends.includes.notification')

Update Gallery Info

@csrf @method('put')
@if($errors->has('gallery_category'))
{{ $errors->first('gallery_category') }}
@endif
@if($errors->has('title'))
{{ $errors->first('title') }}
@endif
@if($errors->has('is_active'))
{{ $errors->first('is_active') }}
@endif
@if($errors->has('gallery_type'))
{{ $errors->first('gallery_type') }}
@endif
{{ basename($gallery->image) }} @if($errors->has('image'))
{{ $errors->first('image') }}
@endif
@if($errors->has('url'))
{{ $errors->first('url') }}
@endif
Cancel
@endsection