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

Open in your IDE?
  1. {# 商品名補完プラグイン #}
  2. {{ include('@MGSearchProduct/mgsearchproduct.twig', ignore_missing=true) }}
  3. {# / 商品名補完プラグイン #}
  4. {#
  5. This file is part of EC-CUBE
  6. Copyright(c) LOCKON CO.,LTD. All Rights Reserved.
  7. http://www.lockon.co.jp/
  8. For the full copyright and license information, please view the LICENSE
  9. file that was distributed with this source code.
  10. #}
  11. {% form_theme form 'Form/form_div_layout.twig' %}
  12. <div class="ec-headerSearch">
  13.     <form method="get" class="searchform" action="{{ path('product_list') }}">
  14.         <div class="ec-headerSearch__category">
  15.             <div class="ec-select ec-select_search">
  16.                 {{ form_widget(form.category_id, {'id': null, 'attr': {'class': 'category_id'}}) }}
  17.             </div>
  18.         </div>
  19.         <div class="ec-headerSearch__keyword">
  20.             <div class="ec-input">
  21.                 {{ form_widget(form.name, {'id': null, 'attr': {'class': 'search-name', 'placeholder' : 'キーワードを入力' }} ) }}
  22.                 <button class="ec-headerSearch__keywordBtn" type="submit">
  23.                     <div class="ec-icon">
  24.                         <img src="{{ asset('assets/icon/search-dark.svg') }}" alt="">
  25.                     </div>
  26.                 </button>
  27.             </div>
  28.         </div>
  29.     </form>
  30. </div>