Form attributes

Defaults are set in the config file. You override them with the formAttr() method in your form components.

See more examples on the "Form Attributes" pages

protected function formAttr(): array
{
    return [
        'formTitle' => 'Create User',
    ];
}

Last updated