@extends('layouts/microfin_layout') @section('title', '| Loan Reschedule Report') @section('content')
{{-- --}}

LOAN RESCHEDULE REPORT

{!! Form::open(array('url' => 'LoanRescheduleReportView', 'role' => 'form', 'class'=>'form-horizontal form-groups', 'id' => 'filterFormId', 'method'=>'get')) !!}
{!! Form::label('', 'Branch Name:', ['class' => 'control-label pull-left', 'style' => 'color:black']) !!}
{!! Form::label('','Reschedule Purpose: ', ['class' => 'control-label pull-left', 'style' => 'color:black']) !!}
{!! Form::select('purpose', [''=>'--All--']+$reschedulePurposes, null ,['id'=>'purpose','class'=>'form-control input-sm','autocomplete'=>'off']) !!}
{!! Form::label('', '.', ['class' => 'control-label col-md-12', 'style' => 'color:#708090']) !!}
{!! Form::submit('Show Report', ['id' => 'reportSubmit', 'class' => 'btn btn-primary']); !!}
{!! Form::close() !!}
@endsection