@extends('layouts.app') @section('content') @include('includes.header')

{{__('Welcome to Your Candidate Dashboard')}}

@include('flash::message')
@include('includes.user_dashboard_menu')
@if(count(auth()->user()->getProfileProjectsArray())==0 || count(auth()->user()->getProfileCvsArray())==0 || count(auth()->user()->profileExperience()->get()) == 0 || count(auth()->user()->profileEducation()->get()) == 0 || count(auth()->user()->profileSkills()->get()) == 0)
Your Resume is incomplete please update.
@endif @include('includes.user_dashboard_stats')
{{auth()->user()->printUserCoverImage()}}
{{auth()->user()->printUserImage()}}

{{auth()->user()->name}}

  • {{Auth::user()->getLocation()}}
  • {{auth()->user()->phone}}
  • {{auth()->user()->email}}

{{__('My Applied Jobs')}} {{__('View All')}}

    @if(isset($appliedJobs) && count($appliedJobs) > 0) @foreach($appliedJobs as $appliedjob) @php $job = $appliedjob->job; $company = $job ? $job->company : null; @endphp @if($job && $company) @endif @endforeach @else
    {{__('No applied jobs found')}}
    @endif
{{-- Only show package section if packages are active --}} @if((bool)config('jobseeker.is_jobseeker_package_active')) @php $package = Auth::user()->getPackage(); @endphp {{-- Show package summary if user has one (already purchased) --}} @if(null !== $package) @include('includes.user_package_msg') @else {{-- Show buy package message if user doesn't have a package --}}

{{__('No Active Package')}}

{{__('Purchase a package to unlock premium features and boost your job search!')}}

{{__('View Available Packages')}}
@endif @endif

{{__('Recommended Jobs')}}

    @if(!empty($matchingJobs) && count($matchingJobs) > 0) @foreach($matchingJobs as $match) @endforeach @else
    {{__('No matching jobs found')}}
    @endif

{{__('My Followings')}} {{__('View All')}}

@include('includes.footer') @endsection @push('scripts') @include('includes.immediate_available_btn') @endpush