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

Savings Status

{!! Form::open(array('url' => '', 'role' => 'form', 'class'=>'form-horizontal form-groups', 'id' => 'filterFormId', 'method'=>'get')) !!}
{!! Form::label('', 'Samity:', ['class' => 'control-label pull-left']) !!}
{!! Form::select('filSamity', [''=>'All Samity']+$samityList, null ,['id'=>'filSamity','class'=>'form-control input-sm','autocomplete'=>'off']) !!}
{!! Form::label('', 'Product:', ['class' => 'control-label pull-left']) !!}
{!! Form::select('filSavProduct', [''=>'All']+$savProductList, null ,['id'=>'filSavProduct','class'=>'form-control input-sm','autocomplete'=>'off']) !!}
{!! Form::label('', 'Member Status:', ['class' => 'control-label pull-left']) !!}
{!! Form::select('filMemberStatus', ['' => 'All', 1 => 'Active', 2 => 'Inactive'], null ,['id'=>'filMemberStatus','class'=>'form-control input-sm','autocomplete'=>'off']) !!}
{!! Form::label('', 'Date From:', ['class' => 'control-label pull-left']) !!}
{!! Form::text('filDateFrom',null,['id'=>'filDateFrom','class'=>'form-control input-sm', 'autocomplete'=>'off','readonly']) !!}

{!! Form::label('', 'Date To:', ['class' => 'control-label pull-left']) !!}
{!! Form::text('filDateTo',null,['id'=>'filDateTo','class'=>'form-control input-sm', 'autocomplete'=>'off','required','readonly']) !!}
{!! Form::label('', 'Member Code:', ['class' => 'control-label pull-left']) !!}
{!! Form::text('filMemberCode', null,['id'=>'filMemberCode','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