@extends('layouts/microfin_layout') @section('title', '| POMIS-3A Report') @section('content')

POMIS-3A Report

{!! Form::open(array('url' => 'pksfPomis3AReportTable', 'role' => 'form', 'class'=>'form-horizontal form-groups', 'id' => 'filterFormId', 'method'=>'get')) !!}
@if(!in_array($userRoleId, Config('services.branch_level_user_roles')))
{!! Form::label('', 'Report 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('', 'Year:', ['class' => 'control-label pull-left']) !!}
{!! Form::select('filYear',[''=>'--Select Year--']+$yearsOption, null,['id'=>'filYear','class'=>'form-control input-sm', 'autocomplete'=>'off','required']) !!}

{!! Form::label('', 'Month:', ['class' => 'control-label pull-left']) !!}
{!! Form::select('filMonth', [''=>'--Select Month--']+$monthsOption, null,['id'=>'filMonth','class'=>'form-control input-sm', 'autocomplete'=>'off','required']) !!}

{!! Form::label('', 'Loan Option:', ['class' => 'control-label pull-left']) !!}
{!! Form::select('filLoanOption',$loanOptions, null,['id'=>'filLoanOption','class'=>'form-control input-sm', 'autocomplete'=>'off']) !!}

{!! Form::label('', 'Funding Org.:', ['class' => 'control-label pull-left']) !!}
{!! Form::select('filFundingOrg',[''=>'--All--','-1'=>'PKSF & Others']+$fundingOrgList, null,['id'=>'filFundingOrg','class'=>'form-control input-sm', 'autocomplete'=>'off']) !!}

{!! Form::label('', '', ['class' => 'control-label col-md-12']) !!}
{!! Form::submit('Show Report', ['id' => 'reportSubmit', 'class' => 'btn btn-primary btn-xs']); !!}
{!! Form::close() !!}
{{-- panel-body panelBodyView DIV --}}
@endsection