vendor/sylius/sylius/src/Sylius/Bundle/UiBundle/Resources/views/Grid/Filter/string.html.twig line 1

Open in your IDE?
  1. {% form_theme form '@SyliusUi/Form/theme.html.twig' %}
  2. <div class="sylius-filters__group">
  3.     {% if form.type is defined %}
  4.         {{ form_row(form.type, {'label': filter.label}) }}
  5.     {% endif %}
  6.     {{ form_row(form.value, {attr: {placeholder: form.value.vars.label}, 'label': form.type is defined ? form.value.vars.label : filter.label}) }}
  7. </div>