@extends('layouts.finance') @section('title', $mode === 'create' ? 'Add Bank Account' : 'Edit Bank Account') @section('subtitle', 'Create and maintain database-backed bank accounts') @section('content') @php $isCreate = $mode === 'create'; $action = $isCreate ? route('finance.accounts.store') : route('finance.accounts.update', $account); @endphp

{{ $isCreate ? 'New Bank Account' : 'Edit Bank Account' }}

This record is saved in the bank accounts database and used across dashboard totals, transactions, reports, and cash flow.
Back
@csrf @unless($isCreate) @method('PUT') @endunless
Cancel
@endsection