diff --git a/app/config/auth.php b/app/config/auth.php index f39e3259..62ea9c3d 100644 --- a/app/config/auth.php +++ b/app/config/auth.php @@ -56,7 +56,7 @@ return array( 'reminder' => array( - 'email' => 'auth.password', 'table' => 'password_reminders', + 'email' => 'emails.auth.reminder', 'table' => 'password_reminders', ), diff --git a/app/views/emails/auth/reminder.blade.php b/app/views/emails/auth/reminder.blade.php new file mode 100644 index 00000000..2976327b --- /dev/null +++ b/app/views/emails/auth/reminder.blade.php @@ -0,0 +1,13 @@ + + + + + + +

Password Reset

+ +
+ To reset your password, complete this form: {{ URL::to('password/reset', array($token)) }}. +
+ + \ No newline at end of file