diff --git a/.env.example b/.env.example
index 452f1bc..1bfda66 100644
--- a/.env.example
+++ b/.env.example
@@ -20,11 +20,11 @@ REDIS_PASSWORD=null
REDIS_PORT=6379
MAIL_DRIVER=smtp
-MAIL_HOST=mailtrap.io
-MAIL_PORT=2525
-MAIL_USERNAME=
-MAIL_PASSWORD=
-MAIL_ENCRYPTION=null
+MAIL_HOST=smtp.gmail.com
+MAIL_PORT=587
+MAIL_USERNAME=YOURgmailEMAILhere
+MAIL_PASSWORD=YOURgmailPASSWORDhere
+MAIL_ENCRYPTION=tls
THEME_NAME=clean-blog
diff --git a/config/auth.php b/config/auth.php
index 3fa7f49..2a0083f 100644
--- a/config/auth.php
+++ b/config/auth.php
@@ -98,10 +98,13 @@
'passwords' => [
'users' => [
'provider' => 'users',
- 'email' => 'auth.emails.password',
+ 'email' => 'themes.'.env('THEME_NAME').'.emails.password',
'table' => 'password_resets',
'expire' => 60,
],
],
];
+
+
+
diff --git a/config/mail.php b/config/mail.php
index a076588..23f91eb 100644
--- a/config/mail.php
+++ b/config/mail.php
@@ -55,7 +55,7 @@
|
*/
- 'from' => ['address' => null, 'name' => null],
+ 'from' => ['address' => env('MAIL_USERNAME'), 'name' => null],
/*
|--------------------------------------------------------------------------
diff --git a/resources/views/themes/clean-blog/emails/password.blade.php b/resources/views/themes/clean-blog/emails/password.blade.php
new file mode 100644
index 0000000..bff4d9d
--- /dev/null
+++ b/resources/views/themes/clean-blog/emails/password.blade.php
@@ -0,0 +1,344 @@
+
+
+
+
+
+
+ Your password reset request
+
+
+
+
+
+
+
+
+
+
+
+ |
+
+
+ Vuedo Password Reset
+
+
+
+
+
+
+
+
+
+
+
+ |
+ Vuedo Password Reset
+ |
+
+
+
+ |
+
+ |
+
+
+
+ |
+
+
+
+
+
+
+
+
+
+ |
+
+ Hi there,
+
+ |
+
+
+
+
+
+ |
+
+ A password reset request received.
+ Click the link below to reset your password.
+
+ |
+
+
+ |
+
+
+
+
+ |
+
+
+ |
+
+
+
+ |
+
+ |
+
+
+
+ |
+
+ |
+
+
+
+
+
+
+ |
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/resources/views/themes/clean-blog/pages/auth/passwords/email.blade.php b/resources/views/themes/clean-blog/pages/auth/passwords/email.blade.php
index 4a30ada..108b017 100644
--- a/resources/views/themes/clean-blog/pages/auth/passwords/email.blade.php
+++ b/resources/views/themes/clean-blog/pages/auth/passwords/email.blade.php
@@ -1,4 +1,4 @@
-@extends('themes.clean-blog.partials.layout')
+@extends('themes.clean-blog.layouts.default')
@section("header")
diff --git a/resources/views/themes/clean-blog/pages/auth/passwords/reset.blade.php b/resources/views/themes/clean-blog/pages/auth/passwords/reset.blade.php
new file mode 100644
index 0000000..64a3f5e
--- /dev/null
+++ b/resources/views/themes/clean-blog/pages/auth/passwords/reset.blade.php
@@ -0,0 +1,95 @@
+@extends('themes.clean-blog.layouts.default')
+
+@section("header")
+
+
+
+@endsection
+
+
+@section('content')
+
+
+
Reset Password
+
+ @if (session('status'))
+
+ {{ session('status') }}
+
+ @endif
+
+ @if (count($errors) > 0)
+
+ @endif
+
+
+
+
+@endsection