@extends('layouts/microfin_layout') @section('title', '| Update Opening Loan Information') @section('content') @php use \App\Http\Controllers\microfin\savings\MfnSavingsDepositTypeController as createForm; @endphp
Opening Loan Information
{!! Form::open(array('url' => '', 'role' => 'forl', 'id' => 'branchOpeningInfoForm', 'class' => 'form-horizontal form-groups')) !!}
{!! Form::hidden('dataId',encrypt($openingData->id)) !!} @if ($userBranchId==1) {!! createForm::select('branch', $branchList,$openingData->branchIdFk,'Branch:',['id'=>'branch','required'=>'required']) !!} @endif {!! createForm::select('primaryProduct', $primaryProductList,$openingData->productIdFk,'Loan Product:',['id'=>'primaryProduct','required'=>'required']) !!} {!! createForm::select('gender',$genderList,$openingData->genderTypeId,'Gender:',['required'=>'required']) !!} {!! createForm::text('borrowerNo',$openingData->borrowerNo,'Borrower No (End of Month):',['required'=>'required']) !!} {!! createForm::text('thisMonthBorrowerNo',$openingData->thisMonthBorrowerNo,'Borrower No. (Current Month):',['required'=>'required']) !!} {!! createForm::text('disbursedAmount',$openingData->disbursedAmount,'Loan Disbursement (Cumulative):',['required'=>'required']) !!} {!! createForm::text('thisMonthDisbursedAmount',$openingData->thisMonthDisbursedAmount,'Loan Disbursement (Current Month):',['required'=>'required']) !!} {!! createForm::text('repayAmount',$openingData->repayAmount,'Total Loan Repay - with Service Charge (Against Cumulative Loan Disburse):',['required'=>'required']) !!} {!! createForm::text('principalRecoveryAmount',$openingData->principalRecoveryAmount,'Loan Recovery -Principle (Cumulative):',['required'=>'required']) !!} {!! createForm::text('thisMonthPrincipalRecoveryAmount',$openingData->thisMonthPrincipalRecoveryAmount,'Loan Recovery -Principle (Current Month):',['required'=>'required']) !!} {!! createForm::text('recoveryAmount',$openingData->recoveryAmount,'Loan Recovery -with Service Charge (Cumulative):',['required'=>'required']) !!} {!! createForm::text('thisMonthRecoveryAmount',$openingData->thisMonthRecoveryAmount,'Loan Recovery -with Service Charge (Current Month):',['required'=>'required']) !!} {!! createForm::text('writeOffAmount',$openingData->writeOffAmount,'Write Off Amount -with Service Charge (Cumulative):',['required'=>'required']) !!} {!! createForm::text('writeOffNo',$openingData->writeOffNo,'Write Off Number (Cumulative):',['required'=>'required']) !!} {!! createForm::text('thisMonthWriteOffAmount',$openingData->thisMonthWriteOffAmount,'Write Off Amount -with Service Charge (Current Month):',['required'=>'required']) !!} {!! createForm::text('thisMonthwriteOffNo',$openingData->thisMonthwriteOffNo,'Write Off Number (Current Month):',['required'=>'required']) !!} {!! createForm::text('writeOffAmountPrincipal',$openingData->writeOffAmountPrincipal,'Write Off Amount - Principle (Cumulative):',['required'=>'required']) !!} {!! createForm::text('thisMonthWriteOffAmountPrincipal',$openingData->thisMonthWriteOffAmountPrincipal,'Write Off Amount - Principle (Current Month):',['required'=>'required']) !!} {!! createForm::text('waiverAmountPrincipal',$openingData->waiverAmountPrincipal,'Loan Waiver Amount - Principle (Cumulative):',['required'=>'required']) !!} {!! createForm::text('thisMonthWaiverAmountPrincipal',$openingData->thisMonthWaiverAmountPrincipal,'Loan Waiver Amount - Principle (Current Month):',['required'=>'required']) !!} {!! createForm::text('rebateAmount',$openingData->rebateAmount,'Loan Rebate Amount (Cumulative):',['required'=>'required']) !!} {!! createForm::text('thisMonthRebateAmount',$openingData->thisMonthRebateAmount,'Loan Rebate Amount (Current Month):',['required'=>'required']) !!} {!! createForm::text('fullyPaidBorrowerNo',$openingData->fullyPaidBorrowerNo,'Fully Paid Borrower No. (Cumulative):',['required'=>'required']) !!} {!! createForm::text('thisMonthFullyPaidBorrowerNo',$openingData->thisMonthFullyPaidBorrowerNo,'Fully Paid Borrower No. (Current Month):',['required'=>'required']) !!} {!! createForm::text('closingOutstandingAmount',$openingData->closingOutstandingAmount,'Loan Outstanding-Principle (End of the Month):',['required'=>'required']) !!} {!! createForm::text('closingOutstandingAmountWithServicesCharge',$openingData->closingOutstandingAmountWithServicesCharge,'Loan Outstanding-with service Charge (End of the Month):',['required'=>'required']) !!} {!! createForm::text('principalRecoverableAmount',$openingData->principalRecoverableAmount,'Recoverable Amount - Principle (Cumulative):',['required'=>'required']) !!} {!! createForm::text('thisMonthPrincipalRecoverableAmount',$openingData->thisMonthPrincipalRecoverableAmount,'Recoverable Amount - Principle (Current Month):',['required'=>'required']) !!} {!! createForm::text('recoverableAmount',$openingData->recoverableAmount,'Recoverable Amount - with service Charge (Cumulative):',['required'=>'required']) !!} {!! createForm::text('thisMonthRecoverableAmount',$openingData->thisMonthRecoverableAmount,'Recoverable Amount - with service Charge (Current Month):',['required'=>'required']) !!} {!! createForm::text('principalRegularCollectionAmount',$openingData->principalRegularCollectionAmount,'Regular Recovery Amount - Principle (Cumulative):',['required'=>'required']) !!} {!! createForm::text('thisMonthPrincipalRegularCollectionAmount',$openingData->thisMonthPrincipalRegularCollectionAmount,'Regular Recovery - Principle (Current Month):',['required'=>'required']) !!} {!! createForm::text('regularCollectionAmount',$openingData->regularCollectionAmount,'Regular Recovery - with service Charge (Cumulative):',['required'=>'required']) !!} {!! createForm::text('thisMonthRegularCollectionAmount',$openingData->thisMonthRegularCollectionAmount,'Regular Recovery - with service Charge (Current Month):',['required'=>'required']) !!} {!! createForm::text('principalAdvanceCollectionAmount',$openingData->principalAdvanceCollectionAmount,'Advance Recovery - Principle (Cumulative):',['required'=>'required']) !!} {!! createForm::text('thisMonthPrincipalAdvanceCollectionAmount',$openingData->thisMonthPrincipalAdvanceCollectionAmount,'Advance Recovery - Principle (Current Month):',['required'=>'required']) !!} {!! createForm::text('advanceCollectionAmount',$openingData->advanceCollectionAmount,'Advance Recovery - with service Charge (Cumulative):',['required'=>'required']) !!} {!! createForm::text('thisMonthAdvanceCollectionAmount',$openingData->thisMonthAdvanceCollectionAmount,'Advance Recovery - with service Charge (Current Month):',['required'=>'required']) !!} {!! createForm::text('principalDueCollectionAmount',$openingData->principalDueCollectionAmount,'Due Recovery - Principle (Cumulative):',['required'=>'required']) !!} {!! createForm::text('thisMonthPrincipalDueCollectionAmount',$openingData->thisMonthPrincipalDueCollectionAmount,'Due Recovery - Principle (Current Month):',['required'=>'required']) !!} {!! createForm::text('dueCollectionAmount',$openingData->dueCollectionAmount,'Due Recovery - with service Charge (Cumulative):',['required'=>'required']) !!} {!! createForm::text('thisMonthDueCollectionAmount',$openingData->thisMonthDueCollectionAmount,'Due Recovery - with service Charge (Current Month):',['required'=>'required']) !!} {!! createForm::text('closingDueAmount',$openingData->closingDueAmount,'Total Due Amount - Principle (End of the Month):',['required'=>'required']) !!} {!! createForm::text('thisMonthNewDueAmount',$openingData->thisMonthNewDueAmount,'New Due Amount- Principle (Current Month):',['required'=>'required']) !!} {!! createForm::text('closingDueAmountWithServicesCharge',$openingData->closingDueAmountWithServicesCharge,'Total Due Amount - with service Charge (End of the Month):',['required'=>'required']) !!} {!! createForm::text('thisMonthNewDueAmountWithServicesCharge',$openingData->thisMonthNewDueAmountWithServicesCharge,'New Due Amount - with service Charge (Current Month):',['required'=>'required']) !!} {!! createForm::text('watchfulOutstanding',$openingData->watchfulOutstanding,'watchful Outstanding - Principle (End of the Month):',['required'=>'required']) !!} {!! createForm::text('watchfulOutstandingWithServicesCharge',$openingData->watchfulOutstandingWithServicesCharge,'watchful Outstanding - with service Charge (End of the Month):',['required'=>'required']) !!} {!! createForm::text('watchfulOverdue',$openingData->watchfulOverdue,'watchful Overdue (End of the Month):',['required'=>'required']) !!} {!! createForm::text('watchfulOverdueWithServicesCharge',$openingData->watchfulOverdueWithServicesCharge,'watchful Overdue - with service Charge (End of the Month):',['required'=>'required']) !!} {!! createForm::text('substandardOutstanding',$openingData->substandardOutstanding,'Substandard Outstanding - Principle (End of the Month):',['required'=>'required']) !!} {!! createForm::text('substandardOutstandingWithServicesCharge',$openingData->substandardOutstandingWithServicesCharge,'Substandard Outstanding - with service Charge (End of the Month):',['required'=>'required']) !!} {!! createForm::text('substandardOverdue',$openingData->substandardOverdue,'Substandard Overdue - Principle (End of the Month):',['required'=>'required']) !!} {!! createForm::text('substandardOverdueWithServicesCharge',$openingData->substandardOverdueWithServicesCharge,'Substandard Overdue - with service Charge (End of the Month):',['required'=>'required']) !!} {!! createForm::text('doubtfullOutstanding',$openingData->doubtfullOutstanding,'Doubtfull Outstanding- Principle (End of the Month):',['required'=>'required']) !!} {!! createForm::text('doubtfullOutstandingWithServicesCharge',$openingData->doubtfullOutstandingWithServicesCharge,'Doubtfull Outstanding - with service Charge (End of the Month):',['required'=>'required']) !!} {!! createForm::text('doubtfullOverdue',$openingData->doubtfullOverdue,'Doubtfull Overdue- Principle (End of the Month):',['required'=>'required']) !!} {!! createForm::text('doubtfullOverdueWithServicesCharge',$openingData->doubtfullOverdueWithServicesCharge,'Doubtfull Overdue - with service Charge (End of the Month):',['required'=>'required']) !!} {!! createForm::text('badOutstanding',$openingData->badOutstanding,'Bad Outstanding- Principle (End of the Month):',['required'=>'required']) !!} {!! createForm::text('badOutstandingWithServicesCharge',$openingData->badOutstandingWithServicesCharge,'Bad Outstanding - with service Charge (End of the Month):',['required'=>'required']) !!} {!! createForm::text('badOverdue',$openingData->badOverdue,'Bad Overdue - Principle (End of the Month):',['required'=>'required']) !!} {!! createForm::text('badOverdueWithServicesCharge',$openingData->badOverdueWithServicesCharge,'Bad Overdue - with service Charge (End of the Month):',['required'=>'required']) !!} {!! createForm::text('outstandingWithMoreThan2DueInstallments',$openingData->outstandingWithMoreThan2DueInstallments,'Outstanding with more then Two due Installment - Principle (End of the Month):',['required'=>'required']) !!} {!! createForm::text('outstandingWithMoreThan2DueInstallmentsServicesCharge',$openingData->outstandingWithMoreThan2DueInstallmentsServicesCharge,'Outstanding with more then Two due Installment - With service Charge (End of the Month):',['required'=>'required']) !!} {!! createForm::text('noOfSubstandardLoanee',$openingData->noOfSubstandardLoanee,'Substandard Loanee No. (End of Month):',['required'=>'required']) !!} {!! createForm::text('noOfDoubtfullLoanee',$openingData->noOfDoubtfullLoanee,'Doubtful Loanee No. (End of Month):',['required'=>'required']) !!} {!! createForm::text('noOfBadLoanee',$openingData->noOfBadLoanee,'Bad Loanee No. (End of Month):',['required'=>'required']) !!} {!! createForm::text('noOfDueLoanee',$openingData->noOfDueLoanee,'Due Loanee No. (End of Month):',['required'=>'required']) !!} {!! createForm::text('totalNoOfDueLoaneeOnlyOptionalProduct',$openingData->totalNoOfDueLoaneeOnlyOptionalProduct,'Due Loanee No. (Only Optional product) (End of Month):',['required'=>'required']) !!} {!! createForm::text('savingBalanceOfOverdueLoanee',$openingData->savingBalanceOfOverdueLoanee,'Savings Balance of overdue Loanee (End of Month):',['required'=>'required']) !!} {!! createForm::text('noOfUniqueLoanee',$openingData->noOfUniqueLoanee,'No. of Member (End of Month):',['required'=>'required']) !!} {!! createForm::text('cumBorrowerNo',$openingData->cumBorrowerNo,'Borrower No. (Cumulative):',['required'=>'required']) !!} {!! createForm::text('cumLoanNo',$openingData->cumLoanNo,'Loan No. (Cumulative):',['required'=>'required']) !!}
{!! Form::close() !!}
{{-- update notification Modal --}} {{-- end update notification Modal --}} @endsection