You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 23, 2026. It is now read-only.
Hi,
I can see that there is a profile_photo_path in the User model, but the jetstream feature is not enabled so the upload form is not showing up.
Once enabled, the photo file is sent as NULL in the payload, so you should use Inertia's Router.Post() instead for form.Post() to send it.
Once uploaded, the photo uri generated is also not absolute. It points to profile-photos/XXX which is a local file path from the /storage/ folder.
Hi,
I can see that there is a profile_photo_path in the User model, but the jetstream feature is not enabled so the upload form is not showing up.
Once enabled, the photo file is sent as NULL in the payload, so you should use Inertia's Router.Post() instead for form.Post() to send it.
Once uploaded, the photo uri generated is also not absolute. It points to profile-photos/XXX which is a local file path from the /storage/ folder.