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

Open in your IDE?
  1. {#
  2. This file is part of EC-CUBE
  3. Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
  4. http://www.ec-cube.co.jp/
  5. For the full copyright and license information, please view the LICENSE
  6. file that was distributed with this source code.
  7. #}
  8. {% form_theme form 'Form/form_div_layout.twig' %}
  9.                     <form class="d-flex" role="search" method="get" action="{{ path('product_list') }}">
  10.                         <div class="input-group">
  11.                             <input type="hidden" name="category_id" value="" />
  12.                             {{ form_widget(form.name, {'id': null, 'attr': {'class': 'form-control', 'placeholder' : '検索', 'aria-label' : 'Search' }} ) }}
  13.                             <button class="btn btn-dark" type="submit"><i class="icon-search"></i></button>
  14.                         </div>
  15.                     </form>