Per the docs:
You may easily modify the notification class used to send the password reset link to the user. To get started, override the
sendPasswordResetNotificationmethod on yourUsermodel. Within this method, you may send the notification using any notification class you choose. The password reset$tokenis the first argument received by the method:
This method is defined in Illuminate\Auth\Passwords\CanResetPassword.
So you can use the token as a variable, pass it to your custom view and send via mailable, etc.