@extends('admin.layouts.app') @section('title', 'Edit Category') @section('page-title', 'Edit Category') @section('content')
@csrf @method('PUT')
@error('name')

{{ $message }}

@enderror
@error('slug')

{{ $message }}

@enderror
@if($category->image)
{{ $category->name }}
@endif
@error('image')

{{ $message }}

@enderror
is_active) ? 'checked' : '' }} class="h-4 w-4 text-blue-600 focus:ring-blue-500 border-gray-300 rounded">
Cancel
@endsection