So in my footer I have a form for adding subscribers to a newsletter. When you enter your email and submit the form, you get redirected back with a message. Everything works fine. However the footer is at the bottom of the page and I get redirected back to the top. Is there a way to redirect and go to the footer directly? Here is the code in my controller:
public function addSubscriber(Request $request)
{
$this->validate($request, [
'email' => 'required|email'
]);
...code...
return redirect()->back()->with(['added' => $message]);
}
How can I achieve that?