<?php

/**
 * @package WordPress
 * @subpackage Traveler
 * @since 1.0
 *
 * Cars search form
 *
 * Created by ShineTheme
 *
 */
$cars = new STCars();
$fields = $cars->get_search_fields();
?>
<h3><?php 
st_the_language('search_for_cars');
?>
</h3>
<form method="get" action="<?php 
the_permalink();
?>
">
    <div class="row">
        <?php 
if (!get_option('permalink_structure')) {
    echo '<input type="hidden" name="page_id"  value="' . STInput::request('page_id') . '">';
}
?>
        <input type="hidden" name="layout" value="<?php 
echo STInput::get('layout');