CRUD laboratory

This commit is contained in:
2026-06-16 15:06:11 +07:00
parent f4c7af85e9
commit 09de1c3e92
12 changed files with 67 additions and 70 deletions

View File

@@ -75,8 +75,8 @@
? asset('storage/avatars/'.auth()->user()->avatar)
: 'https://ui-avatars.com/api/?name='.urlencode(auth()->user()->name) }}"
class="rounded-circle"
width="100"
height="100">
width="80"
height="80">
</div>
<!-- Name -->
<h6 class="mb-1">{{ auth()->user()->name }}</h6>
@@ -84,11 +84,11 @@
<div class="text-start">
<p>
{{__('general.user_name')}} :
<strong>{{ auth()->user()->email }}</strong>
{{ auth()->user()->email }}
</p>
<p>
{{__('general.user_role')}} :
<strong>{{ auth()->user()->role->name_en }}</strong>
{{ auth()->user()->role->name_en }}
</p>
</div>