
<h3 class="widget-title">
	<img style="vertical-align: text-top;" src="<?php echo asset('assets/images/icon-filter.png'); ?>" alt="" />
	Advanced Search
</h3>
<form id="search_filter_form" class="widget " style="border:none;">
<h4>Vehicle Make</h4>
<div class="widget-content widget-filter">	
	<?php foreach($search_filters['MAKE'] as $make=>$quantity): ?>							
	<div class="filter">
		<input checked="checked" id="manufacturers_<?php echo $make; ?>" type="checkbox" class="styled" name="makes[]" value="<?php echo $make; ?>"/> 
		<label for="manufacturers_<?php echo $make; ?>"><?php echo $make; ?></label> 
		<div class="filter_quantity"><?php echo $quantity; ?></div>
	</div>
	<?php endforeach; ?>
</div>
<h4>Number of Passengers</h4>
<div class="widget-content-range">								
	<input class="passangers_range" value="<?php echo $search_filters['MIN_PASSENGERS']; ?>;<?php echo $search_filters['MAX_PASSENGERS']; ?>" name="passangers_range" />
</div>
<h4>Vehicle type</h4>
<div class="widget-content widget-filter">
	<?php foreach($search_filters['CATEGORY'] as $category=>$quantity): ?>							
	<div class="filter">
		<input checked="checked" id="categories_<?php echo $category; ?>" type="checkbox" class="styled" name="categories[]" value="<?php echo $category; ?>"/> 
		<label for="categories_<?php echo $category; ?>"><?php echo $category; ?></label> 
		<div class="filter_quantity"><?php echo $quantity; ?></div>
	</div>
	<?php endforeach; ?>

</div>

</form>
