@extends('layouts.admin') @section('title', 'Add Bank Account') @section('page-title', 'Add Bank Account') @section('breadcrumbs') Banking Overview chevron_right Add Bank Account @endsection @section('content')
@csrf

Bank Account Details

@php $defaultCurrency = \App\Models\Currency::getDefaultCode(); $currencies = \App\Models\Currency::where('is_active', true)->orderBy('is_default', 'desc')->orderBy('name')->get(); @endphp

Active Status

Enable this account for transactions

Cancel
@endsection