@if (!auth('candidate')->check()) {{__('frontend.post_jobs')}} @endif @if (!auth('candidate')->check() and !auth('employer')->check()) @endif
@if (auth('candidate')->check() or auth('employer')->check())
@php $user = auth('candidate')->check() ? auth('candidate')->user() : auth('employer')->user(); $img = auth('candidate')->check() ? auth('candidate')->user()->getFirstMediaUrl('candidate_icon') : auth('employer')->user()->getFirstMediaUrl('employer_icon'); @endphp @if ($img) @else @endif {{ $user->fname ." ".$user->lname }}
@endif