@extends('layouts/acc_layout') @section('title', '| Add Bkash Reconciliation(PGW)') @section('content')
Add Bkash Reconciliation(PGW)
{!! Form::open([ 'url' => url('acc/bkashPGWreconciliation/process'), 'class' => 'form-horizontal form-groups', 'method' => 'get', 'id' =>'processForm' ]) !!}
{!! Form::label('ftOutBankRegisterId', 'HO Bank A/C (FT In):', ['class' => 'control-label required']) !!} {!! Form::select( 'ftInBankRegisterId', $ftInBankAccounts, request()->all('ftInBankRegisterId')['ftInBankRegisterId'] ?? '', ['class' => 'form-control', 'id' => 'ftInBankRegisterId'] ) !!}
{!! Form::label('ftInBankRegisterId', 'Branch Bank A/C (FT Out):', ['class' => 'control-label required']) !!} {!! Form::select( 'ftOutBankRegisterId', $ftOutBankAccounts, request()->all('ftOutBankRegisterId')['ftOutBankRegisterId'] ?? '', ['class' => 'form-control', 'id' => 'ftOutBankRegisterId'] ) !!}
{!! 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