I use the mask for the phone number entry field
$form->field($model, 'phone')->textInput(['value'=>$info['phone']])->widget(\yii\widgets\MaskedInput::className(), ['mask' => '+7 (999)-999-9999']); Everything works well, but after saving it does not display a value, although it is not empty.
textInput(['value'=>$info['phone']]) What could be the problem?