Skip to content

Commit

Permalink
Fix Logo Path.
Browse files Browse the repository at this point in the history
  • Loading branch information
takielias committed Sep 16, 2024
1 parent deb7037 commit 3851d23
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion resources/views/auth/login.blade.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<x-aim-admin::layout.login>
<x-aim-admin::layout.auth-card>
<x-slot name="logo">
<img src="{{ asset('logo.png') }}" alt="Logo" style="width: 150px; height: auto;">
<img src="{{ asset('img/logo.png') }}" alt="Logo" style="width: 150px; height: auto;">
</x-slot>
<form method="POST" action="{{ route('login') }}">
@csrf
Expand Down
2 changes: 1 addition & 1 deletion resources/views/auth/register.blade.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<x-aim-admin::layout.login>
<x-aim-admin::layout.auth-card>
<x-slot name="logo">
<img src="{{ asset('logo.png') }}" alt="Logo" style="width: 150px; height: auto;">
<img src="{{ asset('img/logo.png') }}" alt="Logo" style="width: 150px; height: auto;">
</x-slot>
<div class="text-center">
<h3 class="mb-3">User Registration</h3>
Expand Down
2 changes: 1 addition & 1 deletion resources/views/components/sidebar/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

{{-- Sidebar brand logo --}}
<a href="{{URL('/')}}" class="brand-link {{config('aim-admin.layout_class.brand', '')}}">
<img src="{{asset('logo.png')}}" alt="Aim Admin" class="brand-image img-circle elevation-3">
<img src="{{asset('img/logo.png')}}" alt="Aim Admin" class="brand-image img-circle elevation-3">
<span class="brand-text font-weight-light">{{$applicationName}}</span>
</a>

Expand Down

0 comments on commit 3851d23

Please sign in to comment.