@extends('admin.layouts.app') @section('title', 'Edit Category') @section('content')

Edit Category

Update category: {{ $category->name }}

Back to List
@csrf @method('PUT')
@error('name')

{{ $message }}

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

Check the X to remove current image

@endif
@error('image')

{{ $message }}

@enderror
@push('scripts') @endpush @endsection