3 declare(strict_types=1);
13 $ui = $DIC->ui()->factory();
14 $renderer = $DIC->ui()->renderer();
16 $text_input = $ui->input()->field()
17 ->text(
"Required Input",
"User needs to fill this field")
20 $section = $ui->input()->field()->section(
22 "Section with required field",
23 "The Form should show an explaining hint at the bottom" 26 $form = $ui->input()->container()->form()->standard(
"", [$section]);
27 return $renderer->render($form);