@extends('layouts/microfin_layout') @section('title', '| Cash In Hand Adjustment Configuration') @section('content') @include('successMsg')
Edit Cash In Hand Adjustment Configuration
{!! Form::open(['role' => 'form', 'class' => 'form-horizontal form-groups', 'id' => 'specialMemberCashInHandAdjustmentConfigurationForm']) !!}
{!! Form::label('effectiveDate', 'Effective Date:', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::text('effectiveDate', date ('d-m-Y', strtotime($cashInHandAdjustmentConfigurations->effectiveDate)), ['class'=>'form-control input-sm readonly', 'type' => 'text']) !!}
{!! Form::label('photographyCharge', 'Photography Charge:', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::text('photographyCharge', $cashInHandAdjustmentConfigurations->photographyCharge, ['class' => 'form-control', 'id' => 'photographyCharge', 'type' => 'text', 'placeholder' => 'Enter Photography Charge (TK)', 'autocomplete'=>'off']) !!}
{!! Form::label('fileSaleCharge', 'File Sale Charge:', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::text('fileSaleCharge', $cashInHandAdjustmentConfigurations->fileSaleCharge, ['class' => 'form-control', 'id' => 'fileSaleCharge', 'type' => 'text', 'placeholder' => 'Enter File Sale Charge', 'autocomplete'=>'off']) !!}
{!! Form::label('documentPrintCharge', 'Document Print Charge:', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::text('documentPrintCharge', $cashInHandAdjustmentConfigurations->documentPrintCharge, ['class' => 'form-control', 'id' => 'documentPrintCharge', 'type' => 'text', 'placeholder' => 'Enter Document Print Charge', 'autocomplete'=>'off']) !!}

Loan Processing Fee Configuration:


{!! Form::label('applicableLoanAmountFrom', 'Applicable Loan Amount From:', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::text('applicableLoanAmountFrom', $cashInHandAdjustmentConfigurations->applicableLoanAmountFrom, ['class' => 'form-control', 'id' => 'applicableLoanAmountFrom', 'type' => 'text', 'placeholder' => 'Enter Applicable Loan Amount From', 'autocomplete'=>'off']) !!}

{!! Form::label('processingFeePercentage', 'Percentage:', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::text('processingFeePercentage', $cashInHandAdjustmentConfigurations->processingFeePercentage, ['class' => 'form-control', 'id' => 'processingFeePercentage', 'type' => 'text', 'placeholder' => 'Enter Percentage', 'autocomplete'=>'off']) !!}


{!! Form::label('submit', ' ', ['class' => 'col-sm-5 control-label']) !!}
{!! Form::submit('Save', ['id' => 'specialMemberCashInHandAdjustmentConfigurationSubmit', 'class' => 'btn btn-success']) !!} Close
{!! Form::close() !!}
@endsection