{% form_theme form 'Form/form_div_layout.twig' %}
<div class="search_box">
<h3 class="border_ttl"><span>商品検索</span></h3>
<form method="get" class="searchform" action="{{ path('product_list') }}">
<label class="labeltxt">商品カテゴリー</label>
{{ form_widget(form.category_id, {'id': null, 'attr': {'class': 'selectBox'}}) }}
<label class="labeltxt mt20">商品コード入力<span>(半角英数)</span></label>
{{ form_widget(form.name, {'id': null, 'attr': {'class': 'inputBox' }} )}}
<input class="btn submit mt20" type="submit" value="検 索" />
</form>
</div>