@extends('layouts/microfin_layout') @section('title', '|Repayment Frequency Type') @section('content')
New Repayment Frequency
{!! 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 repayment frequency name', 'onfocus' => 'this.placeholder=""', 'onblur' => 'this.placeholder="Enter repayment frequency name"' ]) !!}
{!! Form::submit('Submit', ['id' => 'submit', 'class' => 'btn btn-info']) !!} Close
{!! Form::close() !!}
{{-- --}} @endsection