mirror of
https://koodu.h-i.works/projects/thebadspace
synced 2025-06-25 16:04:37 -05:00
added member profile editing
added a basic ui so logged in members can change their info/password when needed
This commit is contained in:
@ -5,6 +5,7 @@ use App\Http\Controllers\FrontIndexController;
|
||||
use App\Http\Controllers\AuthController;
|
||||
use App\Http\Controllers\DenController;
|
||||
use App\Http\Controllers\LocationController;
|
||||
use App\Http\Controllers\MemberController;
|
||||
use App\Http\Controllers\ExportController;
|
||||
use App\Http\Controllers\AppealController;
|
||||
|
||||
@ -49,4 +50,6 @@ Route::group(['prefix' => 'den', 'middleware' => 'member.check'], function () {
|
||||
Route::post("/locations/edit", [LocationController::class, 'editLocation']);
|
||||
Route::get("/admin/update", [LocationController::class, 'updateLocations']);
|
||||
Route::get("/admin/compile", [LocationController::class, 'compileLocations']);
|
||||
//member actions
|
||||
Route::post("/profile/edit", [MemberController::class, 'memberEdit']);
|
||||
});
|
||||
|
Reference in New Issue
Block a user