app/template/bravers/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. <div class="ec-headerSearch">
  10.     <form method="get" class="searchform" action="{{ path('product_list') }}">
  11.         <div class="ec-headerSearch__keyword">
  12.             <div class="ec-input">
  13.                 {{ form_widget(form.name, {'id': null, 'attr': {'class': 'search-name', 'placeholder' : 'キーワードを入力' }} ) }}
  14.                 <button class="ec-headerSearch__keywordBtn" type="submit">
  15.                     <div class="ec-icon">
  16.                         <img src="{{ asset('assets/img/common/search.svg') }}" alt="検索ボタン">
  17.                     </div>
  18.                 </button>
  19.             </div>
  20.         </div>
  21.     </form>
  22. </div>