Checkbox & radio¶
Twig
{{ forms.checkboxGroupField({ label: "Options", name: "options", values: ["comments","notify"], options: [ {label:"Enable comments",value:"comments"}, {label:"Allow guests",value:"guests"}, {label:"Send notifications",value:"notify"}, ], }) }}
Twig
{{ forms.radioGroupField({ label: "Status", name: "status", value: "draft", options: [ {label:"Draft",value:"draft"}, {label:"Pending review",value:"pending"}, {label:"Published",value:"live"}, ], }) }}