I have link :
example.com/register#register
If validation fails laravel redirects to :
example.com/register
w
You could create the URL first, using the route name.
$url = URL::route('route_name', ['#hash_tag']); Redirect::to($url);
Or...
return Redirect::to(URL::previous() . "#hash_tag");