Laravel jetstream profile photo not showing

Jewel Chowdhury
1 min readMar 12, 2021
Photo by Emanuel Minca on Unsplash

Learn more about Jetstream and install first. visit

I just tried installing and playing it in fortify but I can’t really understand why my profile photo not showing a picture.

It will happen when you are first-time use jetstream and liveware auth support. laravel jetstream profile photo not showing is the main problem to work with build-in laravel auth support.

Solution

Enable profile feature first. Go to config/jetstream.php and Update the file like below.

'features' => [
// Features::termsAndPrivacyPolicy(),
Features::profilePhotos(),
// Features::api(),
// Features::teams(['invitations' => true]),
Features::accountDeletion(),
],

Run the project

php artisan serve

Go to your profile and see what happen when you first time uploads your profile photo.

What happens? Doesn’t see your profile photo? Ok, Let's start to solve our problem.

link Storage

By running the below command we have to link our storage folder.

php artisan link:storage

It will create a storage link within our public directory.

Update .env file

Update our app URL path like this:

APP_URL=http://127.0.0.1:8000

Run the project

WOW! now the profile photo is showing. if not plz comment below.

--

--