Skip to content

Commit 67728b9

Browse files
fix: redirection issue
1 parent 0155d43 commit 67728b9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

packages/Webkul/Admin/src/Http/Controllers/User/ForgotPasswordController.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
use Illuminate\Foundation\Auth\SendsPasswordResetEmails;
66
use Illuminate\Support\Facades\Password;
7-
use Illuminate\View\View;
87
use Webkul\Admin\Http\Controllers\Controller;
98
use Webkul\Admin\Notifications\User\UserResetPassword;
109

@@ -15,7 +14,7 @@ class ForgotPasswordController extends Controller
1514
/**
1615
* Show the form for creating a new resource.
1716
*/
18-
public function create(): View
17+
public function create()
1918
{
2019
if (auth()->guard('user')->check()) {
2120
return redirect()->route('admin.dashboard.index');

0 commit comments

Comments
 (0)