addField($field); $this->generateDoubleSection([new Text('firstname'), new Text('lastname')]); $email =new InputGroup('usernameGroup'); $email->addInputComponent((new InputGroupElements\Text('username'))->addHtmlAttribute('readonly','true')); $email->addInputAddon('emailSign', false, '@'); $email->addInputComponent((new InputGroupElements\Text('domain'))->addHtmlAttribute('readonly','true')); $this->addSection($email); $this->generateDoubleSection([new Text('display_name'), new Select('status')]); $quota = new Text('quota'); $quota->setDescription('description'); $quota->addValidator(new Decimal(0)); $this->generateDoubleSection([$quota, new Select('unit')]); } }