Oldy
Oldy
Can I somehow add field in group? For example ``` $this->addGroup('my_group1', ['label' => 'My group'], function(){ $this->add('text1', 'text'); }) $this->addGroup('my_group2', ['label' => 'My group2'], function(){ $this->add('text2', 'text'); }) ``` and...
I have а password field and bind a model to the form. ``` $form = $formBuilder->create(UsersForm::class, [ 'method' => 'PATCH', 'url' => route('users.update', $user), 'model' => $user, ]); ``` In...
@vitorbrandao Hi! Do you have plans to add sf5 support? I faced some problems trying to adopt it for sf5. 1. There is no tempting section in framework config, so...
Definition [for classes ](https://www.php-fig.org/psr/psr-12/#41-extends-and-implements) > The opening brace for the class MUST go on its own line; the closing brace for the class MUST go on the next line after...