I would like to add custom link in Yii 2 model based validation message.
I am using following code block at the moment-
public function rules()
{
return [
['email', 'required'],
['email', 'email'],
['email', 'unique', 'targetClass' => '\common\models\User',
'message' => 'Email address has already been taken.'],
];
}
I want this message to display like following-
"Email address is taken. Already registered? Then log-in here."
How can I achieve this?