@extends('layouts.admin') @section('title', 'Edit Main Category - ' . $mainCategory->name) @section('content')

Edit Main Category

Back to Categories
Edit Main Category
@csrf @method('PUT')
@error('name')
{{ $message }}
@enderror
This will be the display name for the category
@error('description')
{{ $message }}
@enderror
Optional description to help understand this category
@error('icon')
{{ $message }}
@enderror
FontAwesome icon class (e.g., fas fa-tag, bi bi-shop)
@error('image')
{{ $message }}
@enderror
Upload an image for this category (recommended: 300x200px)
@if($mainCategory->image)
{{ $mainCategory->name }}
@endif
is_active) ? 'checked' : '' }}>
Inactive categories won't appear in dropdowns
Cancel
Category Info
{{ $mainCategory->businessType->name }}
{{ $mainCategory->slug }}
{{ $mainCategory->sort_order }}
{{ $mainCategory->subCategories->count() }}
{{ $mainCategory->created_at->format('M d, Y H:i') }}
{{ $mainCategory->updated_at->format('M d, Y H:i') }}
@endsection