# Form A `Form` component that automatically generates labels and arranges fields in a grid. It simplifies form creation by handling the layout for you.  To get started, use the following example to create a simple form with 2 fields - `project` and `option`: ```django {% component "form" %} {% fill "field:project" %} {% endfill %} {% fill "field:option" %} {% endfill %} {% endcomponent %} ``` This will render a `