= $form->field($model, 'status')
->dropDownList(
[
2 => 'Новая',
1 => 'Одобрена',
0 => 'Отклонена',
]
) ?>
= $form->field($model, 'secondname')
->textInput() ?>
= $form->field($model, 'name')
->textInput() ?>
= $form->field($model, 'dignity')
->textInput() ?>
= $form->field($model, 'gender')
->dropDownList(
[
1 => 'Мужской',
2 => 'Женский',
]
) ?>
= $form->field($model, 'birth')
->textInput() ?>
= $form->field($model, 'citizenship')
->textInput() ?>
= $form->field($model, 'passport')
->textInput() ?>
= $form->field($model, 'email')
->textInput() ?>
= $form->field($model, 'organization')
->textInput() ?>
= $form->field($model, 'conference')
->checkbox(
[
'class' => 'flat',
]
) ?>
= $form->field($model, 'geee')
->checkbox(
[
'class' => 'flat',
]
) ?>
= $form->field($model, 'gere')
->checkbox(
[
'class' => 'flat',
]
) ?>
= \yii\helpers\Html::submitButton(
'Сохранить',
[ 'class' => $model->isNewRecord ? 'btn btn-success' : 'btn btn-success' ]
) ?>