diff --git a/passwords.md b/passwords.md index 712b80afb8..150d5f0c8b 100644 --- a/passwords.md +++ b/passwords.md @@ -217,7 +217,7 @@ Schedule::command('auth:clear-resets')->everyFifteenMinutes(); #### Reset Link Customization -You may customize the password reset link URL using the `createUrlUsing` method provided by the `ResetPassword` notification class. This method accepts a closure which receives the user instance that is receiving the notification as well as the password reset link token. Typically, you should call this method from your `App\Providers\AppServiceProvider` service provider's `boot` method: +You may customize the password reset link URL using the `createUrlUsing` method provided by the `ResetPassword` notification class. This method accepts a closure which receives the user instance that is receiving the notification as well as the password reset link token. Typically, you should call this method from the `boot` method of your application's `AppServiceProvider`: ```php use App\Models\User;