Skip to content

Sections

from almasix.orbit.schemas import Section
from almasix.orbit.forms import TextInput
Section.make("profile")
.heading("Profile")
.description("Public details")
.schema([
TextInput.make("name").required(),
])

See Schemas overview.