I am trying to display a link in error message in login for, but it is not working.
The error message in LoginForm
valdiation:
$this->addError($attribute, 'Your account has been disabled. <a href=""> Enable It</a>');
In login.php
(view):
<?= $form->errorSummary($model); ?>
I tried like below, but not working:
<?= $form->errorSummary($model,['errorOptions' => ['encode' => false,'class' => 'help-block']]); ?>
I am getting the following output instead of rendered a
tag:
You need to disable encoding at
ActiveForm
level usingencodeErrorSummary
property, if you want to use$form->errorSummary($model)
:Alternatively you may use
Html::errorSummary()
directly: