419 CSRF token mismatch error, but only when uploading files via Livewire components. Regular Livewire component updates (POST requests to /livewire/update) work perfectly fine.FileUpload component, the POST request to https://sub.domain.com/livewire/upload-file?... fails with a 419 error.Set-Cookie for a new session, indicating it didn't recognize the original session for that specific upload request.X-CSRF-TOKEN header is being correctly sent with the failing upload request (matching the token from the initial page load meta tag).monicahq/laravel-cloudflare and replaced the default TrustProxies in bootstrap/app.php as per their docs.APP_URL={The Domain From Cloudflared}SESSION_DOMAIN=.domain.com (also tried null and sub.domain.com)SESSION_SECURE_COOKIE=trueconfig/session.php: Checked same_site (currently 'lax', also tried 'none' with secure=true). http_only is true.'web' and just StartSession::class to temporary_file_upload.middleware in config/livewire.php. No change.