Home > other >  laravel jestream - why i can't see the new logo, that i changed
laravel jestream - why i can't see the new logo, that i changed

Time:09-13

I have a problem in my laravel jetstream(livewire) /views/vendor/jetsream components, the logo( in auth-card-logo. blade , app-logo.blade) is not loading.

I have already published the Livewire stack's Blade components in order to change the logo but it doesn't seem working well.

I can only see the alt="..." attribute of <img..>, so i changed the logo in the "right" way, and I have really tried everything. I’ve tried the path to the image, its format and I don't have any idea on what is going on.

This is what i see in my login

authentication-card-logo.blade.php
resources › views › vendor › jetstream› components › authentication-card-logo.blade.php › img
<img src="{{ asset ('/images/voci_logo.jpeg') }}" alt="Logo" style="width: 40px">

This is my auth-card-logo-blade component

CodePudding user response:

Thank you for your support, i solved it by putting the file in the assets folder, which seems to be the default folder for this kind of changes. I also changed the path to : src="{{ asset('/assets/images/my_logo.jpeg') }} and now it's working.

  • Related