@extends('layouts/microfin_layout') @section('title', '| Generate Interest') @section('content')

Interest Generate

{!! Form::open(array('url' => '', 'role' => 'form', 'class'=>'form-horizontal form-groups', 'id' => 'filterFormId', 'method'=>'get')) !!}
{!! Form::label('', 'Branch:', ['class' => 'control-label pull-left']) !!}
{!! Form::select('filBranch', $branchList, null ,['id'=>'filBranch','class'=>'form-control input-sm','autocomplete'=>'off']) !!}
{!! Form::label('', 'Samity:', ['class' => 'control-label pull-left']) !!}
{!! Form::select('filSamity', [], null ,['id'=>'filSamity','class'=>'form-control input-sm','autocomplete'=>'off']) !!}
{!! Form::label('', 'Product:', ['class' => 'control-label pull-left']) !!}
{!! Form::select('filProduct', ['' => 'All']+$productList, null ,['id'=>'filProduct','class'=>'form-control input-sm','autocomplete'=>'off']) !!}
{!! Form::label('', 'Fiscal Year:', ['class' => 'control-label pull-left']) !!}
{!! Form::select('fiscalYear', $fiscalYears, null ,['id'=>'fiscalYear','class'=>'form-control input-sm','autocomplete'=>'off']) !!}
{!! Form::label('', '', ['class' => 'control-label col-md-12']) !!}
{!! Form::submit('Generate', ['id' => 'generateButton', 'class' => 'btn btn-primary btn-xs']); !!}
{!! Form::close() !!}
{{-- panel-body panelBodyView DIV --}}
@endsection