When I try to verify an email in Laravel I get the error:
403 Invalid signature
The problem is a misconfiguration in the nginx configuration file (the Server Blocks).
The bad configuration was
location / { try_files $uri $uri/ /index.php?q=$uri&$args; }
The good configuration is
location / { try_files $uri $uri/ /index.php?$query_string; }