Override password reset url in email template Laravel 5.3

Viewed 2545

I am trying to override the actionUrl that is being put in an Email to reset a users account. But it stays the same no matter what I do. I tried overriding in my Route files. Can anybody help me ?

Here is the route in my routes file :

Route::get('cms/password/reset/{token}', 'Auth\ResetPasswordController@showResetForm');

Here is my email template :

<p style="{{ $style['paragraph-sub'] }}">
    <a style="{{ $style['anchor'] }}" href="{{ $actionUrl }}" target="_blank">
        {{ $actionUrl }}
    </a>
</p>` 

I know actionUrl is defined in SimpleMessage.php but I don't know where it's set.

1 Answers
Related