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

Savings Interest Payment

{!! Form::open(array( Request::url(), 'role' => 'form', 'class'=>'form-horizontal form-groups', 'id' => 'filterFormId', 'method'=>'get')) !!}
@if (sizeof($branchList) > 1)
{!! Form::label('', 'Branch:', ['class' => 'control-label pull-left']) !!}
{!! Form::select('filBranch', [''=>'--All--']+$branchList, null ,['id'=>'filBranch','class'=>'form-control input-sm','autocomplete'=>'off']) !!}
@endif
{!! Form::label('', 'Product:', ['class' => 'control-label pull-left']) !!}
{!! Form::select('filProduct', [''=>'--All--']+$products, $selectedProduct ,['id'=>'filProduct','class'=>'form-control input-sm','autocomplete'=>'off']) !!}
{!! Form::label('', '', ['class' => 'control-label col-md-12']) !!}
{!! Form::submit('Search', ['id' => 'searchButton', 'class' => 'btn btn-primary btn-xs']); !!}
{!! Form::close() !!}
{{-- panel-body panelBodyView DIV --}}
@endsection