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