@extends('layouts/microfin_layout') @section('title', '| Add Interest Calculation Method') @section('content')
New Interest Calculation Method
{!! Form::open(array('url' => '', 'role' => 'form', 'class' => 'form-horizontal form-groups')) !!}
{!! Form::label('name', 'Name:', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('name', $value = null, ['class' => 'form-control', 'id' => 'name', 'type' => 'text', 'placeholder' => 'Enter interest calculation method name', 'onfocus' => 'this.placeholder=""', 'onblur' => 'this.placeholder="Enter interest calculation method name"' ]) !!}
{!! Form::label('shortName', 'Short Name:', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('shortName', $value = null, ['class' => 'form-control', 'id' => 'shortName', 'type' => 'text', 'placeholder' => 'Enter interest calculation method short name', 'onfocus' => 'this.placeholder=""', 'onblur' => 'this.placeholder="Enter interest calculation method short name"' ]) !!}
{!! Form::submit('Submit', ['id' => 'submit', 'class' => 'btn btn-info']) !!} Close
{!! Form::close() !!}
@endsection