# `PhoenixFilament.Form.Section`
[🔗](https://github.com/franciscpd/phoenix-filament/blob/main/lib/phoenix_filament/form/section.ex#L1)

Groups form fields under a labeled heading.

Renders as a `<fieldset>` with `<legend>` in the form builder.
Supports `visible_when` for conditional section visibility.

# `t`

```elixir
@type t() :: %PhoenixFilament.Form.Section{
  items: [PhoenixFilament.Field.t() | PhoenixFilament.Form.Columns.t()],
  label: String.t(),
  visible_when: {atom(), atom(), any()} | nil
}
```

---

*Consult [api-reference.md](api-reference.md) for complete listing*
