fix(route): missing register route
This commit is contained in:
parent
ed73d054e3
commit
18f14cf58e
1 changed files with 4 additions and 1 deletions
|
@ -1,7 +1,10 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
use App\Http\Controllers\Auth\RegistrationController;
|
||||||
use Illuminate\Support\Facades\Route;
|
use Illuminate\Support\Facades\Route;
|
||||||
use Laravel\Fortify\Http\Controllers\AuthenticatedSessionController;
|
use Laravel\Fortify\Http\Controllers\AuthenticatedSessionController;
|
||||||
|
|
||||||
|
|
||||||
Route::post('/login', [AuthenticatedSessionController::class, 'store']);
|
Route::post('/login', [AuthenticatedSessionController::class, 'store']);
|
||||||
|
|
||||||
|
Route::post('/register', [RegistrationController::class, 'create']);
|
Loading…
Add table
Add a link
Reference in a new issue