{!! Form::open(['url' => action('\Modules\Installment\Http\Controllers\InstallmentSystemController@store'), 'method' => 'post','id'=>'add_installment_system' ]) !!}

Add Installment Plan

{!! Form::label('name','Installment Plan Name :*') !!} {!! Form::text('name', null, ['class' => 'form-control', 'required', 'placeholder' =>'Name' ]); !!}
{!! Form::label('number',' Number of installments :*') !!}
{!! Form::text('number', null, ['class' => 'form-control integr', 'required' ]); !!}
{!! Form::label('period',' Repayment Period:') !!}
{!! Form::text('period', null, ['class' => 'form-control integr', 'required' ]); !!}
{!! Form::label('benefit',' Interest Rate %:') !!} {!! Form::text('benefit', null, ['class' => 'form-control', 'required' ]); !!}
{!! Form::label('benefit_type','Interest Type :') !!}
{!! Form::label('latfines','Late Payment Penalty % :') !!}
{!! Form::text('latfines', null, ['class' => 'form-control decimal', 'required' ]); !!}
{!! Form::label('description','Description:') !!} {!! Form::text('description', null, ['class' => 'form-control' ]); !!}
{!! Form::close() !!}