1Route::post('user/profile', function () {
2 // Update the user's profile...
3
4 return redirect('dashboard')->with('status', 'Profile updated!');
5});
1//redirct to previous page with message at a specific setion :)
2return redirect(url()->previous() .'#comments')->with('success', 'Data Your Comment has been created successfully');