@extends('layouts.app') @section('title', 'Edit Sub-Category - Cash Book') @section('content')

Edit Sub-Category

@if($category->parent)

Parent: {{ $category->parent->name }}

@endif
@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT')

Parent category cannot be changed

Inherited from parent: {{ $category->parent?->name }}

Inherited from parent category

Cancel
@endsection