@extends('layouts.app') @section('title', 'Edit Category - Admin') @push('styles') @endpush @section('content')
@include('admin.partials.admin-shell-left', ['backUrl' => route('admin.categories.index'), 'backLabel' => 'All Categories'])
@include('admin.partials.admin-shell-back-mobile', ['backUrl' => route('admin.categories.index'), 'backLabel' => 'All Categories'])

Edit Category

Update {{ $category->name }} — change parent, image, or visibility.

@include('admin.categories.partials.form', ['category' => $category])
@include('partials.category-thumb', ['category' => $category, 'class' => 'mx-auto mb-3', 'size' => 88])
{{ $category->name }}

/{{ $category->slug }}

{{ $category->products()->count() }} Products
{{ $category->children()->count() }} Sub Cats
Danger Zone

Deleting removes this category permanently. Sub-categories and products must be cleared first.

@csrf @method('DELETE')
@include('admin.partials.recent-activity-sidebar')
@endsection @push('scripts') @endpush