{% set name = name|default('q') %}
{% set value = value|default(app.request.get(name)) %}
<div class="input-group input-group--search shadow">
<span class="icon icon-search" aria-hidden="true"></span>
<input type="text" name="{{ name }}" id="search" class="form-control box-shadow-none" value="{{ value }}" placeholder="{{ 'global.filter.searchTerm'|trans }}" aria-label="{{ 'global.filter.searchTerm'|trans }}" aria-describedby="searchSubmit">
<button class="btn btn-no-styling" type="submit" id="searchSubmit">{{ 'global.filter.search'|trans }}</button>
</div>