@extends('layouts/microfin_layout') @section('title', '| Member Inactive Eligible List') @section('content')
Terminated Members

MEMBER INACTIVE ELIGIBLE LIST

{!! Form::open(array('url' => '', 'role' => 'form', 'class'=>'form-horizontal form-groups', 'id' => 'filterFormId', 'method'=>'get')) !!}
@if(!in_array($userRoleId, Config('services.branch_level_user_roles')))
{!! Form::label('', 'Level:', ['class' => 'control-label pull-left']) !!}
{!! Form::select('filReportLevel',$reportLevelList, null ,['id'=>'filReportLevel','class'=>'form-control input-sm','autocomplete'=>'off', 'autofocus']) !!}
{!! Form::label('', 'Branch:', ['class' => 'control-label pull-left']) !!}
{!! Form::select('filBranch', [''=>'--All--']+$branchList, null ,['id'=>'filBranch','class'=>'form-control input-sm','autocomplete'=>'off']) !!}

@endif @if(in_array($userRoleId, Config('services.branch_level_user_roles')))
{!! Form::label('', 'Branch:', ['class' => 'control-label pull-left']) !!}
{!! Form::select('filBranch', $branchList, null ,['id'=>'filBranch','class'=>'form-control input-sm','autocomplete'=>'off']) !!}

@endif
{!! Form::label('','Date To: ', ['class' => 'control-label pull-left', 'style' => 'color:black']) !!}
{!! Form::label('', 'Termination Status:', ['class' => 'control-label pull-left']) !!}
{!! Form::select('filTerminationStatus',['all'=>'All','no'=>'No','yes'=>'Yes'], null,['id'=>'filTerminationStatus','class'=>'form-control input-sm']) !!}
{!! Form::label('', 'Balance:', ['class' => 'control-label pull-left']) !!}
{!! Form::select('filZeroBalance',['all'=>'All', '0'=>'Only 0'], null,['id'=>'filZeroBalance','class'=>'form-control input-sm']) !!}
{!! Form::label('', '', ['class' => 'control-label col-md-12']) !!}
{!! Form::submit('Search', ['id' => 'search', 'class' => 'btn btn-primary btn-xs']); !!}
{!! Form::close() !!}
@endsection