3 declare(strict_types=1);
    23     $ui = $DIC->ui()->factory();
    27     $text_input = $ui->input()->field()->text(
"Disabled Input", 
"Just some disabled input")->withDisabled(
true);
    30     $form = $ui->input()->container()->form()->standard(
"#", [$text_input]);
 
disabled()
 description: > The example shows how to create and render a disabled text input field and attach it ...