{!! Form::open(array('name' => 'searchForm', 'class' => 'searchForm', 'id' => 'searchForm', 'url' => '#', 'method' => 'GET')) !!}
{!! Form::label('Report Level', 'Report Level:*', ['class' => 'control-label']) !!}
{!! Form::select('levelId', array('' => 'Select') + $reportLevel, null, array('class'=>'form-control', 'id' => 'levelId')) !!}
{!! Form::label('region', 'Region:*', ['class' => 'control-label']) !!}
{!! Form::select('regionId', array('' => 'Select', 'all' => 'All') + $getRegion, null, array('class'=>'form-control', 'id' => 'regionId')) !!}
{!! Form::label('zone', 'Zone:*', ['class' => 'control-label']) !!}
{!! Form::select('zoneId', array('' => 'Select', 'all' => 'All') + $getZone, null, array('class'=>'form-control', 'id' => 'zoneId')) !!}
{!! Form::label('area', 'Area:*', ['class' => 'control-label']) !!}
{!! Form::select('areaId', array('' => 'Select', 'all' => 'All') + $getArea, null, array('class'=>'form-control', 'id' => 'areaId')) !!}
{!! Form::label('branch', 'Branch:*', ['class' => 'control-label']) !!}
{!! Form::select('branchId', array('' => 'Select'), null, array('class'=>'form-control', 'id' => 'branchId')) !!}
{!! Form::label('samity', 'Samity:*', ['class' => 'control-label']) !!}
{!! Form::select('samityId', array('' => 'Select'), null, array('class'=>'form-control', 'id' => 'samityId')) !!}
{!! Form::label('report option', 'Report Option:*', ['class' => 'control-label']) !!}
{!! Form::select('optioId', array('' => 'Select', '0' => 'Summary', '1' => 'Details'), null, array('class'=>'form-control', 'id' => 'optioId')) !!}
{!! Form::label('date from', 'Date From:*', ['class' => 'control-label']) !!}
{!! Form::text('dateFrom', $value = null, ['class' => 'form-control datepicker', 'id' => 'dateFrom', 'type' => 'text', 'readonly' => 'readonly']) !!}
{!! Form::label('date to', 'Date To:*', ['class' => 'control-label']) !!}
{!! Form::text('dateTo', $value = null, ['class' => 'form-control datepicker', 'id' => 'dateTo', 'type' => 'text', 'readonly' => 'readonly']) !!}
{!! Form::label('', '', ['class' => 'control-label']) !!}
{!! Form::submit('Show Report', ['id' => 'submit', 'class' => 'btn btn-search', 'style' => 'float:right;color:white']) !!}