@extends('layouts/microfin_layout') @section('title', '| Add LLP Configuration') @section('content') @include('successMsg')
Add LLP Percentage Configuration
{!! Form::open(['role' => 'form', 'class' => 'form-horizontal form-groups', 'id' => 'llpPercentageConfigurationForm']) !!}
{!! 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('regular', 'Regular:', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::text('regular', $value = null, ['class' => 'form-control', 'id' => 'regular', 'type' => 'text', 'placeholder' => 'Enter Regular %', 'autocomplete'=>'off']) !!}

{!! Form::label('watchful', 'Watchful:', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::text('watchful', $value = null, ['class' => 'form-control', 'id' => 'watchful', 'type' => 'text', 'placeholder' => 'Enter Watchful %', 'autocomplete'=>'off']) !!}

{!! Form::label('substandard', 'substandard:', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::text('substandard', $value = null, ['class' => 'form-control', 'id' => 'substandard', 'type' => 'text', 'placeholder' => 'Enter Substandard %', 'autocomplete'=>'off']) !!}

{!! Form::label('doubtful', 'Doubtful:', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::text('doubtful', $value = null, ['class' => 'form-control', 'id' => 'doubtful', 'type' => 'text', 'placeholder' => 'Enter Doubtful %', 'autocomplete'=>'off']) !!}

{!! Form::label('badLoan', 'Bad Loan:', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::text('badLoan', $value = null, ['class' => 'form-control', 'id' => 'badLoan', 'type' => 'text', 'placeholder' => 'Enter Bad Loan %', 'autocomplete'=>'off']) !!}


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