@extends('admin.layouts.app') @section('title', 'Create Category') @section('page_title', 'Add New Category') @section('content')
Create Category
@csrf
@error('name')
{{ $message }}
@enderror
@error('parent_id')
{{ $message }}
@enderror Leave empty to create a main category. Select a parent to create a sub-category.
@error('description')
{{ $message }}
@enderror
Cancel
@endsection