File: D:/HostingSpaces/SBogers10/immoginis.komma.pro/app/storage/views/4f268bd28d845e0d95b5ce0fffb3aca2
<?php echo Form::open(['method' => 'get', 'url' => 'aanbod', 'id' => 'selectForm']); ?> <?php /*<div class="hide"> <?php echo Form::label('city'); ?> <?php echo Form::text('city', Input::get('city'),['id'=>'cityField']); ?> </div>*/ ?> <div id="locationField"> <p><?php echo \Illuminate\Support\Facades\Lang::get('translations.locationFieldHeader'); ?></p> <span class="search"></span> <?php /*<input id="autocomplete" placeholder="<?php echo \Illuminate\Support\Facades\Lang::get('translations.locationFieldHeader'); ?>" type="text"/>*/ ?> <?php /* <?php echo Form::select('city', $cities['sale'], Input::get('city'), ['id' =>'cityField']); ?>*/ ?> <?php /* <?php echo Form::select('citySet', $citySets, \Input::get('citySet'), ['id' =>'citySetField']); ?>*/ ?> <select id="citySetField" name="citySet"> <?php foreach($citySets as $citySet): ?> <option value="<?php echo $citySet->id; ?>" <?php if(\Input::get('citySet') == $citySet->id): ?> selected <?php endif; ?>><?php echo $citySet->label; ?></option> <?php endforeach; ?> </select> </div> <div class="hide"> <?php echo Form::label('Beschikbaarheid'); ?> <?php echo Form::select('available',['0'=>'Kies beschikbaarheid','1'=>'Beschikbaar', '2'=> 'verhuurd/verkocht'],Input::get('available')); ?> </div> <hr> <div id="typeField"> <p class="selecting"><span id="select"><?php echo \Illuminate\Support\Facades\Lang::get('translations.selectAll'); ?></span> / <span id="deselect" class="inactive"><?php echo \Illuminate\Support\Facades\Lang::get('translations.deselectAll'); ?></span> </p> <p><?php echo \Illuminate\Support\Facades\Lang::get('translations.typeFieldHeader'); ?></p> <div class="boxes"> <?php foreach($formInfo['filter_types'] as $filter_type_key => $filter_type_name): ?> <div class="checkBox"> <?php echo Form::checkbox($filter_type_key,true,Input::get($filter_type_key),['id'=>'type_'.$filter_type_key, 'class' => 'type_checkbox']); ?> <?php echo Form::label('type_'.$filter_type_key,$filter_type_name); ?> </div> <?php endforeach; ?> <div class="clear"></div> </div> </div> <hr> <div id="priceField"> <p><?php echo \Illuminate\Support\Facades\Lang::get('translations.rentSale'); ?></p> <?php echo Form::select('goal',['0'=> 'Beide','sale'=>'Te Koop', 'rent'=> 'Te Huur'],Input::get('goal'), ['id' =>'goal_property']); ?> <div class="hide"> <p><?php echo \Illuminate\Support\Facades\Lang::get('translations.priceFieldHeader'); ?></p> <span class="before">Van</span><?php echo Form::select('min_price',['0'=>'€ 0','50000'=>'€ 50.000', '100000'=> '€ 100.000', '150000'=> '€ 150.000', '200000'=> '€ 200.000', '250000'=> '€ 250.000', '300000'=> '€ 300.000', '350000'=> '€ 350.000', '400000'=> '€ 400.000', '450000'=> '€ 450.000'],Input::get('min_price'), ['id' =>'min_price']); ?><span class="arrow"></span> <span class="before">Tot</span><?php echo Form::select('max_price',['0'=>trans('translations.noMax'),'50000'=>'€ 50.000', '100000'=> '€ 100.000', '150000'=> '€ 150.000', '200000'=> '€ 200.000', '250000'=> '€ 250.000', '300000'=> '€ 300.000', '350000'=> '€ 350.000', '400000'=> '€ 400.000', '450000'=> '€ 450.000'],Input::get('max_price'), ['id' =>'max_price']); ?><span class="arrow"></span> </div> <div class="clear"></div> </div> <div id="submitButton"> <p><?php echo \Illuminate\Support\Facades\Lang::get('translations.submitButton'); ?></p> </div> <div class="hide"> <?php echo Form::submit('Zoeken'); ?> </div> <?php echo Form::close(); ?>