@extends('layouts/microfin_layout') @section('title', '| Daily Recoverable Report (Member Wise)') @section('content')
{!! Form::open(array('name' => 'searchForm', 'class' => 'searchForm', 'url' => 'viewRegularLoan', 'method' => 'GET')) !!}
{!! Form::label('branch', 'Branch:', ['class' => 'control-label']) !!}
{!! Form::select('branchId', array('' => 'Select') + ($branch), null, array('class'=>'form-control', 'id' => 'branchId')) !!}
{!! Form::label('field officer', 'Field Officer:', ['class' => 'control-label']) !!}
{!! Form::select('fieldOfficerId', array('' => 'Select'), null, array('class'=>'form-control', 'id' => 'fieldOfficerId')) !!}
{!! Form::label('samity', 'Samity:', ['class' => 'control-label']) !!}
{!! Form::select('samityId', array('' => 'Select'), null, array('class'=>'form-control', 'id' => 'samityId')) !!}
{!! Form::label('product category', 'Product Category:', ['class' => 'control-label']) !!}
{!! Form::select('productCategoryId', array('' => 'Select') + ($primaryProductCategory), null, array('class'=>'form-control', 'id' => 'productCategoryId')) !!}
{!! Form::label('product', 'Product:', ['class' => 'control-label']) !!}
{!! Form::select('productId', array('' => 'Select'), null, array('class'=>'form-control', 'id' => 'productId')) !!}
{!! Form::label('date', 'Date:', ['class' => 'control-label']) !!}
{!! Form::text('dateFrom', $value = null, ['class' => 'form-control datepicker', 'id' => 'dateFrom', 'type' => 'text', 'readonly' => 'readonly']) !!}
{!! Form::label('', '', ['class' => 'control-label']) !!}
{!! Form::submit('Search', ['id' => 'submit', 'class' => 'btn btn-search', 'style' => 'float:right']) !!}
{!! Form::close() !!}

Daily Recoverable Report (Member Wise)

@endsection