@extends('dashboard.layouts.app') @section('title', __('dashboard.Edit Category')) @section('page_heading', __('dashboard.Edit Category')) @section('breadcrumb') @endsection @section('content')

{{ __('dashboard.Edit Category') }}

@csrf @method('PUT')
@error('parent_id')
{{ $message }}
@enderror
@foreach(config('app.supported_locales') as $locale)
@error('name.' . $locale)
{{ $message }}
@enderror
@endforeach
@error('status')
{{ $message }}
@enderror
@endsection