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

Edit Sub Category

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