@extends('layouts/acc_layout') @section('title', '| Add Emergency Loan Payment') @section('content')
Add Emergency Loan Payment LIST
{!! Form::open([ 'url' => url('acc/emergencyLoanPayment/process'), 'class' => 'form-horizontal form-groups', 'method' => 'get', 'id' =>'processForm' ]) !!} {{-- Start of report level --}}
{{-- end of report level --}} {{-- Start of area level --}} {{-- end of area level --}} {{-- start of zone level --}} {{-- End of zone level --}} {{-- Start of region level --}} {{-- End of region level --}} {{-- Start of branch level --}}
{{-- end of branch level --}}
{!! Form::label('nidStatus', 'NID Status:', ['class' => 'control-label']) !!} {!! Form::select( 'nidStatus', $nidStatus, request()->all('nidStatus')['nidStatus'] ?? '', ['class' => 'form-control', 'id' => 'nidStatus'] ) !!}
{!! Form::label('ftOutBankRegisterId', 'HO Bank A/C (FT Out):', ['class' => 'control-label required']) !!} {!! Form::select( 'ftOutBankRegisterId', $ftOutBankAccounts, request()->all('ftOutBankRegisterId')['ftOutBankRegisterId'] ?? '', ['class' => 'form-control', 'id' => 'ftOutBankRegisterId'] ) !!}
{!! Form::label('ftInBankRegisterId', 'Branch Bank A/C (FT In):', ['class' => 'control-label required']) !!} {!! Form::select( 'ftInBankRegisterId', $ftInBankAccounts, request()->all('ftInBankRegisterId')['ftInBankRegisterId'] ?? '', ['class' => 'form-control', 'id' => 'ftInBankRegisterId'] ) !!}
{!! Form::label('memberPaymentType', 'Member Payment Type:', ['class' => 'control-label required']) !!} {!! Form::select( 'memberPaymentType', $BANK_TYPES, request()->all('memberPaymentType')['memberPaymentType'] ?? 'bank', ['class' => 'form-control', 'id' => 'memberPaymentType'] ) !!}
{!! Form::label('txTypeId', 'Transaction Type:', ['class' => 'control-label required']) !!} {!! Form::select( 'txTypeId', ['' =>'Select']+$bankTxTypes, request()->all('txTypeId')['txTypeId'] ?? '', ['class' => 'form-control', 'id' => 'txTypeId'] ) !!}
{!! Form::label('blacklistedStatus', 'Bank Status:', ['class' => 'control-label']) !!} {!! Form::select( 'blacklistedStatus', $blacklistedStatus, request()->all('blacklistedStatus')['blacklistedStatus'] ?? '2', ['class' => 'form-control', 'id' => 'blacklistedStatus'] ) !!}
{!! Form::label('generateDate', 'Generate Date:', ['class' => 'control-label required']) !!} {!! Form::text('generateDate', date('d-m-Y', strtotime($HeadOffice_AisSoftwareDate)), [ 'class' => 'form-control text-center', 'readonly' => 'readonly', 'id' => 'generateDate' ]) !!}
{!! Form::label('submit', ' ', ['class' => 'control-label']) !!} {!! Form::submit('Process', ['id' => 'submit', 'class' => 'form-control btn btn-search']) !!}
{!! Form::close() !!}
@endsection