Skip to content
Snippets Groups Projects
Unverified Commit 468e5fc5 authored by Maxime FRIESS's avatar Maxime FRIESS :blue_heart:
Browse files

[auth] Fixed broken password.reset route

parent 5e487891
Branches
Tags
No related merge requests found
Pipeline #69125 failed with stages
in 30 seconds
......@@ -42,6 +42,9 @@ class RouteServiceProvider extends ServiceProvider
->middleware('api')
->namespace($this->namespace)
->group(base_path('routes/api.php'));
Route::middleware('web')
->namespace($this->namespace)
->group(base_path('routes/web.php'));
});
}
......
<?php
use Illuminate\Support\Facades\Route;
use Illuminate\Support\Facades\URL;
Route::group([], function () {
$url = config('app.url');
URL::forceRootUrl($url);
Route::get('/reset-password/{token}', function () {
return "";
})->name('password.reset');
});
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment