@extends('layouts.admin') @section('title', 'Edit Category') @section('page-title', 'Edit Category') @section('content') Edit Category @csrf @method('PUT') Name * @error('name') {{ $message }} @enderror Slug @error('slug') {{ $message }} @enderror Description {{ old('description', $category->description) }} @error('description') {{ $message }} @enderror Category Image Leave empty to keep current image. Accepted formats: JPEG, PNG, JPG, GIF, WEBP. Max size: 5MB @error('image') {{ $message }} @enderror @if($category->image) Current Image @endif Update Category Cancel @push('scripts') @endpush @endsection