@extends('layouts.admin') @section('title', 'Add Category') @section('header', 'Create Category') @section('content')
@include('partials.admin._breadcrumbs', [ 'breadcrumbs' => [ ['name' => 'Masters', 'url' => '#'], ['name' => 'Categories', 'url' => route('admin.masters.categories.index')], ['name' => 'Create', 'url' => route('admin.masters.categories.create')] ] ])
@csrf

Basic Information

Select a parent category to create a subcategory.

@error('name')

{{ $message }}

@enderror

Leave blank to auto-generate from name.

@error('slug')

{{ $message }}

@enderror

Upload an image (JPG, PNG, GIF). Max 5MB.

@error('image')

{{ $message }}

@enderror

Paste your custom Schema.org JSON-LD code here.

SEO Settings

If checked, search engines will be instructed not to follow links to this category page.

Cancel
@endsection