@extends('admin.layouts.app') @section('title', 'Edit Gallery Category') @section('page_title', 'Gallery Categories') @section('content')

Edit Gallery Category

Update {{ $galleryCategory->name }} information.

Back to List
@csrf @method('PUT') @include( 'admin.gallery-categories._form', [ 'galleryCategory' => $galleryCategory, 'submitText' => 'Update Gallery Category', ] )
@endsection