{{ auth()->user()->name }}
@if (auth()->user()->hasRole('tenant_admin')) مدير الموقع
@elseif (auth()->user()->hasRole('editor')) محرر
@elseif (auth()->user()->hasRole('author')) كاتب
@else مشترك
@endif
{{ mb_substr(auth()->user()->name, 0, 1) }}
{{ auth()->user()->name }}
@if (auth()->user()->hasRole('tenant_admin')) مدير الموقع @elseif (auth()->user()->hasRole('editor')) محرر @elseif (auth()->user()->hasRole('author')) كاتب @else مشترك @endif
@if (session('status'))
{{ session('status') }}
@endif
@if ($errors->any() && !isset($hideGlobalErrors))
{{ $errors->first() }}
@endif
@yield('content')