@extends('layouts.admin') @section('title', 'Edit Category') @section('header', 'Edit Category: ' . $category->name) @section('content')
@include('partials.admin._breadcrumbs', [ 'breadcrumbs' => [ ['name' => 'Masters', 'url' => '#'], ['name' => 'Categories', 'url' => route('admin.masters.categories.index')], ['name' => 'Edit', 'url' => route('admin.masters.categories.edit', $category->id)] ] ])
@csrf @method('PUT')

Basic Information

@error('name')

{{ $message }}

@enderror
@error('slug')

{{ $message }}

@enderror
@if($category->image)
Preview
Current
@endif

Leave blank to keep existing. Max 5MB (JPG, PNG).

@error('image')

{{ $message }}

@enderror

SEO Settings

is_nofollow) ? 'checked' : '' }} class="mt-1 h-4 w-4 text-indigo-600 focus:ring-indigo-500 border-slate-300 rounded">

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

Cancel
@endsection