form.html.twig

Same filename in this branch
  1. 9 core/themes/stable/templates/form/form.html.twig
  2. 9 core/themes/starterkit_theme/templates/form/form.html.twig
  3. 9 core/themes/classy/templates/form/form.html.twig
  4. 9 core/modules/system/templates/form.html.twig
Same filename and directory in other branches
  1. 8.9.x core/themes/stable/templates/form/form.html.twig
  2. 8.9.x core/themes/classy/templates/form/form.html.twig
  3. 8.9.x core/modules/system/templates/form.html.twig
  4. 10 core/themes/stable9/templates/form/form.html.twig
  5. 10 core/themes/starterkit_theme/templates/form/form.html.twig
  6. 10 core/modules/system/templates/form.html.twig
  7. 11.x core/themes/stable9/templates/form/form.html.twig
  8. 11.x core/themes/starterkit_theme/templates/form/form.html.twig
  9. 11.x core/modules/system/templates/form.html.twig

Theme override for a 'form' element.

Available variables

  • attributes: A list of HTML attributes for the wrapper element.
  • children: The child elements of the form.

See also

template_preprocess_form()

File

core/themes/stable9/templates/form/form.html.twig

View source
  1. {#
  2. /**
  3. * @file
  4. * Theme override for a 'form' element.
  5. *
  6. * Available variables
  7. * - attributes: A list of HTML attributes for the wrapper element.
  8. * - children: The child elements of the form.
  9. *
  10. * @see template_preprocess_form()
  11. */
  12. #}
  13. <form{{ attributes }}>
  14. {{ children }}
  15. </form>

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.