T
->withForm($form)
->form($model)
->attribute('login')
->autofocus(true)
->placeHolder('login')
->tabindex('1')
->label('Login:')
->textInput()
?>
<?= FieldBuilder::widget()
->withForm($form)
->form($model)
->attribute('login')
->label('Login:')
->textInput([
'autofocus' => true,
'placeholder' => 'Login: ',
'tabindex' => '1'
])
?>
It equals yii2 just add the withForm() method.