2022-05-03 21:28:20 +00:00
|
|
|
<form class="input-field nav-panel-item nav-panel-search" style="display: none" name="search" method="GET" action="{{ path('search') }}">
|
2016-11-04 22:24:43 +00:00
|
|
|
{% if form_errors(form) %}
|
|
|
|
<span class="black-text">{{ form_errors(form) }}</span>
|
|
|
|
{% endif %}
|
2020-11-11 13:52:20 +00:00
|
|
|
<button type="submit" class="nav-form-button" aria-label="search"><i class="material-icons search" aria-hidden="true"></i></button>
|
2016-11-04 22:24:43 +00:00
|
|
|
|
|
|
|
{% if form_errors(form.term) %}
|
|
|
|
<span class="black-text">{{ form_errors(form.term) }}</span>
|
|
|
|
{% endif %}
|
|
|
|
|
2016-11-10 14:23:53 +00:00
|
|
|
<input type="hidden" name="currentRoute" value="{{ currentRoute }}" />
|
|
|
|
|
2022-05-03 21:28:20 +00:00
|
|
|
{{ form_widget(form.term, {'attr': {'autocomplete': 'off', 'placeholder': 'entry.search.placeholder'}}) }}
|
2020-11-11 13:52:20 +00:00
|
|
|
<i class="material-icons close" aria-label="clear" role="button"></i>
|
2016-11-04 22:24:43 +00:00
|
|
|
|
|
|
|
{{ form_rest(form) }}
|
|
|
|
</form>
|