{{ Form::open(['route' => ['bankaccount.setting.store'], 'id' => 'payment-form']) }}
{{ __('Bank Accounts') }}
{{ __('Edit Bank Accounts settings') }}
@foreach ($accounts as $account) @endforeach
{{ __('Name') }} {{ __('Bank') }} {{ __('Account number') }} {{ __('Current Balance') }} {{ __('Bank Address') }} {{ __('Contact Number') }} {{ __('Action') }}
{{ $account->holder_name }} {{ $account->bank_name }} {{ $account->account_number }} {{ currency_format_with_sym($account->opening_balance) }} {{ $account->bank_address }} {{ $account->contact_number }}
@php $bankAccountArray = isset($settings['bank_account']) ? explode(',', $settings['bank_account']) : []; @endphp id, $bankAccountArray) ? 'checked' : '' }}>
{{ Form::close() }}