app/template/uarts/Block/search_product.twig line 1

Open in your IDE?
  1. {% form_theme form 'Form/form_div_layout.twig' %}
  2. <div class="search_box">
  3.     <h3 class="border_ttl"><span>商品検索</span></h3>
  4.     <form method="get" class="searchform" action="{{ path('product_list') }}">
  5.         <label class="labeltxt">商品カテゴリー</label>
  6.         {{ form_widget(form.category_id, {'id': null, 'attr': {'class': 'selectBox'}}) }}
  7.         
  8.         <label class="labeltxt mt20">商品コード入力<span>(半角英数)</span></label>
  9.         {{ form_widget(form.name, {'id': null, 'attr': {'class': 'inputBox' }} )}}
  10.         <input class="btn submit mt20" type="submit" value="検 索" />
  11.     </form>
  12. </div>