Search Products
<%= form_tag products_search_path, method: :get do %>
<%= label_tag "product", 'Products',class: "col-sm-3 col-form-label" %>
<%= select_tag "product", options_from_collection_for_select(categories, "permalink", "name", "1"), class: "form-control", id: "product_select" %>
<%= label_tag "brand", 'Brand', class: "col-sm-3 col-form-label" %>
<%= select_tag "brand", "", class: "form-control", id: "brand_select" %>
<%= label_tag "name", 'Product Name', class: "col-sm-3 col-form-label" %>
<%= text_field_tag "name", params[:name] ,class: "form-control" %>
<%= submit_tag "Search", class: "btn btn-primary" %>
<% end %>