Skip to content

Commit dcbd440

Browse files
committed
IMPROVEMENTS WITH VIEWS [patch]
Allow customing the auth password reset, login views by adding "views" publish tags
1 parent 3f5730e commit dcbd440

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Darryldecode/Backend/Components/Auth/Controllers/AuthController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public function getLogin()
2929
{
3030
if (view()->exists('backend.auth.login'))
3131
{
32-
return view('backend.auth.password');
32+
return view('backend.auth.login');
3333
}
3434

3535
return view('authManager::login');

src/Darryldecode/Backend/Components/Auth/Controllers/PasswordController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public function getReset($token = null)
7878

7979
if (view()->exists('backend.auth.reset'))
8080
{
81-
return view('backend.auth.password');
81+
return view('backend.auth.reset');
8282
}
8383

8484
return view('authManager::reset')->with('token', $token);

0 commit comments

Comments
 (0)