Custom Email template for Laravel Password Reset
Today I got new task with laravel , since I  have forget passwrod reset scenario.      It works but not using the UIs of our theme.Scpecailly mail.   However reset pasword section of the follwing helps me .   http://miftyisbored.com/a-complete-laravel-5-3-tutorial-for-user-authentication-with-activation-email/   Mailtrap will help you.      php artisan vendor:publish --tag=laravel-notifications     // email template  php artisan make:notification ResetPassword.          .//edit temaplte parameters  chage user class to call notification       public function sendPasswordResetNotification($token)        {           $this->notify(new ResetPassword($token));       }     change ResetPassword in notification folder     eg :      namespace App\Notifications;     use Illuminate\Notifications\Notification;   use Illuminate\Notifications\Messages\MailMessage;     class PasswordResetNotification ...