Skip to content

Instantly share code, notes, and snippets.

@codigoconjuan
Last active May 15, 2026 01:22
Show Gist options
  • Select an option

  • Save codigoconjuan/ec1e8e5a6374aec2d84972d708d39ffb to your computer and use it in GitHub Desktop.

Select an option

Save codigoconjuan/ec1e8e5a6374aec2d84972d708d39ffb to your computer and use it in GitHub Desktop.
Rutas para Settings en Laravel
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