@extends('layouts/microfin_layout') @section('title', '| Cash In Hand Adjustment Configuration') @section('content') @include('successMsg')
Add 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', $value = null, ['class'=>'form-control input-sm readonly', 'type' => 'text']) !!}

{!! Form::label('photographyCharge', 'Photography Charge:', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::text('photographyCharge', $value = null, ['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', $value = null, ['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', $value = null, ['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', $value = null, ['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', $value = null, ['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