$model->comment_author = 111;
<?php $form->field($model, 'comment_author')?>
public function actionComment()
{
..............
...............
if (!Yii::$app->user->isGuest) {
$model->comment_author = Yii::$app->user->identity->username;
}
return $this->render('comment', ['model' => $model]);
}