@php $account = auth('account')->user(); $profileCompletedPercent = 0; if ($account->first_name || $account->last_name) { $profileCompletedPercent += 50 / 3; } if ($account->phone) { $profileCompletedPercent += 50 / 3; } if ($account->email) { $profileCompletedPercent += 50 / 3; } if (!empty($account->avatar_id)) { $profileCompletedPercent += 20; } if ($account->companies->count() > 0) { $profileCompletedPercent += 30; } @endphp
{{ __('Please add detailed information to your profile. This will help you develop your career more quickly.') }}