We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7cdf8f commit b7f8e4fCopy full SHA for b7f8e4f
routes/web.php
@@ -11,12 +11,19 @@
11
|
12
*/
13
14
-use Illuminate\Support\Facades\Auth;
15
use Illuminate\Support\Facades\Route;
16
17
-Auth::routes();
+// Authentication Routes...
+Route::post('login', 'Auth\LoginController@login');
18
+Route::post('logout', 'Auth\LoginController@logout')->name('logout');
19
-Route::get( '/{any}', function () {
20
+// Registration Routes...
21
+Route::post('register', 'Auth\RegisterController@register');
22
+
23
+// Password Reset Routes...
24
+Route::post('password/email', 'Auth\ForgotPasswordController@sendResetLinkEmail');
25
+Route::post('password/reset', 'Auth\ResetPasswordController@reset');
26
27
+Route::get('/{any}', function () {
28
return view('index');
29
})->where('any', '.*');
-
0 commit comments