You are here

form.html.twig in Drupal 10

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.

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>