@if (!auth('candidate')->check())
{{__('frontend.post_jobs')}}
@endif
@if (!auth('candidate')->check() and !auth('employer')->check())
@else
@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 (auth('candidate')->check())
-
{{ $user->fname ." ".$user->lname }}
@endif
@if (auth('employer')->check())
-
{{ $user->company_name}}
@endif
@endif