I have link :
example.com/register#register
If validation fails laravel redirects to :
example.com/register
with validation errors bit without hash url part. How I can redirect to full url with # ?
I know I can use:
Redirect::to(route('register') . '#credits')
But I want complete solution so and my :
return back();
will redirect with #.
Maybe I need to override some code ?