@extends('layouts/acc_layout') @section('title', '| Add OTS Bank Payment') @section('content')
Add OTS Bank Payment
{!! Form::open([ 'url' => url('acc/savingsBankPayment/process'), 'class' => 'form-horizontal form-groups', 'method' => 'get', 'id' =>'processForm' ]) !!}
{!! 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('txTypeId', 'Transaction Type:', ['class' => 'control-label required']) !!} {!! Form::select( 'txTypeId', ['' =>'Select']+$txTypes, request()->all('txTypeId')['txTypeId'] ?? '', ['class' => 'form-control', 'id' => 'txTypeId'] ) !!}
{!! 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('blacklistedStatus', 'Bank Status:', ['class' => 'control-label']) !!} {!! Form::select( 'blacklistedStatus', $blacklistedStatus, request()->all('blacklistedStatus')['blacklistedStatus'] ?? '2', ['class' => 'form-control', 'id' => 'blacklistedStatus'] ) !!}
{!! Form::label('submit', ' ', ['class' => 'control-label']) !!} {!! Form::submit('Process', ['id' => 'submit', 'class' => 'form-control btn btn-search']) !!}
{!! Form::close() !!}
@endsection