Retour rediriger avec le message Laravel
Route::post('user/profile', function () {
// Update the user's profile...
return redirect('dashboard')->with('status', 'Profile updated!');
});
Dr.Paashaas