I want to validate urls in laravel. My rules contain
"url" => "required|url"
This is working great. But when a user submits an url with umlauts, the rule check will always fail.
Chars like öäü etc.. are valid in German Domains. Is there a way in Laravel to accept these chars in urls?