Skip to content
This repository has been archived by the owner on Apr 23, 2024. It is now read-only.

Commit

Permalink
fix: <img> without alt attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
na-teag committed Apr 19, 2024
1 parent 7b0e29d commit f21f248
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions resources/views/admin.blade.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<h1>Panel de gestion administrateur</h1>
<div id="admin_menu">
<a href="/admin/users">
<img src="{{ asset('img/admin_user.webp') }}"/>
<img src="{{ asset('img/admin_user.webp') }}" alt="user image"/>
Gestionnaire Utilisateurs
</a>
<a href="/admin/products">
<img src="{{ asset('img/Plains_Villager_Base.webp') }}"/>
<img src="{{ asset('img/Plains_Villager_Base.webp') }}" alt="product image"/>
Gestionnaire Produits & Catégories
</a>
<a href="/admin/contacts">
<img src="{{ asset('img/Book_JE2_BE2.webp') }}"/>
<img src="{{ asset('img/Book_JE2_BE2.webp') }}" alt="contact image"/>
Gestionnaire Contacts
</a>
</div>
</div>

0 comments on commit f21f248

Please sign in to comment.