@extends('layouts.user-no-nav') @section('page_title', __('Candidate dashboard')) @section('styles') {!! Minify::stylesheet([ '/css/pages/home.css', '/css/pages/candidate-dashboard.css', ])->withFullUrl() !!} @stop @section('content')
@include('elements.page-navigation-header',[ 'title' => __('Candidate dashboard'), 'points' => [ ['title' => __('Home'), 'route' => route('home')], ['title' => __('Candidate dashboard')], ], ]) @include('elements.message-alert',['classes'=>'alert-box pt-0 pb-4'])

{{__('Your candidate profile')}}

{{__('This is where saved jobs, alerts, and application history will come together.')}}

{{$profile->visibilityLabel()}}

{{__('Saved jobs')}}
{{$savedJobsCount}}
@include('elements.icon',['icon'=>'bookmark-outline','variant'=>'small'])
{{__('Compare roles before applying.')}}
{{__('Saved searches')}}
{{$savedSearchesCount}}
@include('elements.icon',['icon'=>'notifications-outline','variant'=>'small'])
{{__('Get alerts for matching roles.')}}
{{__('Applications')}}
{{$applicationsCount}}
@include('elements.icon',['icon'=>'document-text-outline','variant'=>'small'])
{{__('Track jobs you applied to.')}}
{{__('Profile completeness')}}
{{__('Progress')}} {{$profileCompletion}}%
@if(count($profileMissingItems))
@foreach($profileMissingItems as $item)
- {{$item}}
@endforeach
@else

{{__('Your profile has the important pieces in place.')}}

@endif {{__('Edit profile')}}
{{__('Saved jobs')}}
@if($savedJobs->count())
@foreach($savedJobs as $savedJob) @if($savedJob->job) @include('elements.listings.job-listing-box', ['job' => $savedJob->job]) @endif @endforeach
@else

{{__('Bookmark roles and compare them later from here.')}}

{{__('Find jobs to save')}} @endif @if($savedJobsCount > 5) {{__('View all saved jobs')}} @endif
{{__('Saved searches')}}
{{__('Manage')}}
@if($savedSearches->count())
@foreach($savedSearches as $savedSearch)
{{$savedSearch->name}}
{{ucfirst($savedSearch->alert_frequency)}} {{__('alerts')}} ยท {{__($savedSearch->status)}}
@endforeach
@else

{{__('Turn searches into email alerts for roles that match your preferences.')}}

{{__('Create a saved search')}} @endif
{{__('Applications')}}
{{__('View all')}}
@if($applicationHistory->count())
@foreach($applicationHistory as $application)
{{$application->candidateStatusLabel()}}
@if($application->job) {{$application->job->title}} @if($application->job->company)
{{$application->job->company->name}}
@endif @else
{{__('Job no longer available')}}
@endif
@endforeach
@else

{{__('Jobs you apply to will appear here.')}}

@endif
@endsection