Skip to content

Commit 70e01db

Browse files
Fixed login/register logo
Fixed the if-else statement responsible for loading the correct login/register image. The SVG wouldn't work, so I just used the new [email protected], so I guess that one is staying for now. If it works it works, I could load the vector image by changing the logo to the SVG in: confirm-password.blade.php, forgot-password.blade.php, login.blade.php, register.blade.php, reset-password.blade.php and verify-email.blade.php. This works good enough, so imma leave it how it is now.
1 parent c8696ca commit 70e01db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@if(file_exists(base_path("littlelink/images/avatar.png" )))
22
<img class="mb-5" src="{{ asset('littlelink/images/avatar.png') }}" srcset="{{ asset('littlelink/images/[email protected] 2x') }}">
33
@else
4-
<img src="{{ asset('littlelink/images/logo.svg') }}" alt="Logo"></img>
4+
<img class="mb-5" src="{{ asset('littlelink/images/[email protected]') }}">
55
@endif

0 commit comments

Comments
 (0)