title = 'Мой профиль';
$this->params[ 'breadcrumbs' ][] = $this->title;
?>
= $this->title ?>
= $form->field($team, 'lastname')
->textInput() ?>
= $form->field($team, 'firstname')
->textInput() ?>
= $form->field($team, 'middlename')
->textInput() ?>
= $form->field($team, 'link')
->textInput() ?>
= $form->field($team, 'position')
->textInput() ?>
= $form->field($team, 'department_id')
->dropDownList($department) ?>
= $form->field($team, 'experience_from', [ 'template' => "{label}, с {input} года \n{hint}\n{error}" ])
->input('number') ?>
= $form->field($team, 'country_id')
->dropDownList($country) ?>
= ImageUploader::widget([
'model' => $team,
'field' => 'photo',
'width' => 100,
'height' => 100,
'multi' => false,
'gallery' => $team->photo,
'name' => 'Загрузить фото',
]); ?>
= Html::submitButton('Добавить') ?>
end();
?>