Last active
May 15, 2026 01:22
-
-
Save codigoconjuan/ec1e8e5a6374aec2d84972d708d39ffb to your computer and use it in GitHub Desktop.
Rutas para Settings en Laravel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Route::get('/settings/profile', [UpdateProfileController::class, 'edit'])->name('settings.profile'); | |
| Route::put('/settings/profile', [UpdateProfileController::class, 'update'])->name('settings.profile.update'); | |
| Route::get('/settings/password', [UpdatePasswordController::class, 'edit'])->name('settings.password'); | |
| Route::put('/settings/password', [UpdatePasswordController::class, 'update'])->name('settings.password.update'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment