@extends('layouts.app') @section('title', 'Edit Ledger Subcategory') @section('content') Edit Subcategory @component('components.widget', ['class' => 'box-primary', 'title' => 'Update Subcategory']) @csrf @method('PUT') Subcategory Name * @error('name') {{ $message }} @enderror Ledger Type * @foreach($ledgerTypes as $type) ledger_type_id == $type->id ? 'selected' : '' }}> {{ $type->name }} @endforeach @error('ledger_type_id') {{ $message }} @enderror Description {{ old('description', $subcategory->description) }} is_active ? 'checked' : '' }}> Active Update Cancel @endcomponent @endsection