app/Resources/views/_locale.html.twig line 1

Open in your IDE?
  1. {{ form_start(form, {
  2.   'attr': {
  3.     'class': 'js-form-locale',
  4.     'novalidate' : '',
  5.   }
  6. }) }}
  7. {{ form_widget(form.locale, {
  8.   'placeholder': 'form.user.locale.placeholder'|trans,
  9.   'attr': {
  10.     'class': 'js-custom-locale-select',
  11.     'onchange': 'this.form.submit()',
  12.   },
  13. }) }}
  14. {{ form_end(form) }}