{!! Form::open(['role' => 'form', 'class' => 'form-horizontal form-groups', 'id' => 'fundTransferForm']) !!}
@foreach ($BankAcRegisters as $BankAcRegister) @endforeach
SL# Org. Branch Name & Code Bank Account Information Amount (TK.)
Branch Name Code Bank Name A/C Number Routing Number Branch Name
{{ ++$no }} {{ $BankAcRegister->branchName }} {!! Form::hidden('creditAcId[]', $BankAcRegister->id) !!} {{ $BankAcRegister->branchCodeWith0 }} {{ $BankAcRegister->bankName }} {{ $BankAcRegister->bankAcNumber }} {{ $BankAcRegister->acRoutingNumber }} {{ $BankAcRegister->bankBranchName }}, {{ $BankAcRegister->district }} {!! Form::text('amount[]', $value = null, ['class' => 'form-control text-right amount', 'id' => 'amount', 'type' => 'text', 'placeholder' => '-', 'autocomplete' => 'off']) !!}
Total Amount {!! Form::text('totalSum', $value = null, ['class' => 'form-control text-right', 'id' => 'totalSum', 'readonly', 'type' => 'text', 'placeholder' => '-', 'autocomplete' => 'off']) !!}
{!! Form::label('submit', ' ', ['class' => 'col-sm-5 control-label']) !!}
{!! Form::submit('Submit', ['id' => 'fundTransferSubmit', 'class' => 'btn btn-success']) !!} Close
{!! Form::close() !!}