Hi,
I am trying to submit a form with 'get' method and i want a clean url Form:
{{ form("products/search", "method": "get") }}
<label >What:</label> {{ text_field("what") }} <label >Where:</label> {{ text_field("where") }} {{ submit_button("Search") }} {{ endForm() }}
Now, when user will click on Search button i want to submit for and url should be
/products/search/what_value/where_value
Thanks