Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

lukeboy_2002's avatar

Change profile_photo_path Jetstream

Is There a way that the profile photo path can be changed. Now th profiles pictures are in the folder public/profile-photos. I want to place the images in the folder public/images/profile-photos

0 likes
2 replies
OussamaMater's avatar

Well Jetstream uses the public disk by default

So you just need to update the filesystems.php and set the public disk to point where you want to, and then

php artisan storage:link

You might need to clear the cache after that.

Reference:

Or you can create a new disk and change Jetstream to use that disk instead, in the config file

'profile_photo_disk' => 'your_custom_disk'
1 like

Please or to participate in this conversation.