Laravel Response Redirect
#Method 1 with route name
return redirect()->route('login');
#Method 2 back with input
return back()->withInput();
#Method 2 using a url
return redirect('/home/dashboard');
Ahmed