@if (Route::has('profile.overview'))
العودة لنظرة عامة
@endif
@php
$isVerified = isset($user) && ($user->is_verified ?? false);
$isPending = $hasPendingVerification ?? false;
$locked = $isVerified || $isPending;
@endphp
@php $emailLocked = !is_null(Auth::user()->email_verified_at); @endphp
@if ($emailLocked)
@else
@endif
@endsection
@section('js')
@endsection