* * For the full copyright and license information, please view the LICENSE.md * file that was distributed with this source code. */ /** * @var yii\widgets\ActiveForm $form * @var User $user */ ?> field($user, 'username')->textInput(['maxlength' => 255, 'readonly' => $user->type == User::TYPE_PERSON])->hint($user->type == User::TYPE_PERSON ? '微信用户不能修改用户名' : '') ?> field($user, 'nickname')->textInput() ?> field($user, 'password')->passwordInput() ?> field($user, 'email')->textInput(['maxlength' => 255]) ?> field($user, 'tel')->textInput(['maxlength' => 255]) ?>