laravel 5.6 redirect to back utl code example
Example 1: laravel redirect to previous page
url()->previous()
Example 2: Redirect::route('profile') and with() in laravel
// For a route with the following URI: profile/{id}
return redirect()->route('profile', ['id' => 1]);