@extends('layouts/microfin_layout') @section('title', '| Add Loan Product Category') @section('content')
New Loan Product Category
{!! Form::open(array('url' => '', 'role' => 'form', 'class' => 'form-horizontal form-groups')) !!}
{!! Form::label('name', 'Name:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::text('name', $value = null, ['class' => 'form-control', 'id' => 'name', 'type' => 'text', 'placeholder' => 'Enter product category name', 'onfocus' => 'this.placeholder=""', 'onblur' => 'this.placeholder="Enter product category name"' ]) !!}
{!! Form::label('short name', 'Short Name:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::text('shortName', $value = null, ['class' => 'form-control', 'id' => 'shortName', 'type' => 'text', 'placeholder' => 'Enter short name', 'onfocus' => 'this.placeholder=""', 'onblur' => 'this.placeholder="Enter short name"' ]) !!}
{!! Form::label('override savings deposit frequency', 'Override Savings Deposit Frequency:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::select('overrideSavingsDepositeFrequency', ($damageData['boolean']), '1', array('class'=>'form-control', 'id' => 'overrideSavingsDepositeFrequency')) !!}
{!! Form::label('savings deposit frequency for this category', 'Savings Deposit Frequency for this Category:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::select('overrideSavingsDepositeFrequencyForCategory', ($damageData['savingsDepositFrequency']), 'monthly', array('class'=>'form-control', 'id' => 'overrideSavingsDepositeFrequencyForCategory')) !!}
{!! Form::label('monthly collection week', 'Monthly Collection Week:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::select('monthlyCollectionWeek', ($damageData['monthlyCollectionWeek']), 'first', array('class'=>'form-control', 'id' => 'monthlyCollectionWeek')) !!}
{!! Form::label('category type', 'Category Type:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::select('categoryTypeId', ($damageData['categoryType']), null, array('class'=>'form-control', 'id' => 'categoryTypeId')) !!}
{!! Form::label('Digital Loan Category', 'Digital Loan Category:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::select('isDigitalCategory', ($damageData['boolean']), '0', array('class'=>'form-control', 'id' => 'isDigitalCategory')) !!}
{!! Form::submit('Submit', ['id' => 'submit', 'class' => 'btn btn-info']) !!} Close
{!! Form::close() !!}
@endsection