I believe you will need to (i) override the sendPasswordResetNotification in your User model so that you can (ii) replace the default ResetPasswordNotification notification with your own implementation.
(i)
// app/Models/User.php
public function sendPasswordResetNotification($token)
{
$this->notify(new \App\Notifications\ResetPasswordNotification($token));
}
Where is the original template? I just want to avoid another folder if that's possible, been looking around for a "laravel-breeze" or "laravel" folder under node_modules but can't find it. It's in vendor folder.