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

{{__('Profile basics')}}

{{__('Tell employers what you are looking for and how you work best.')}}

open_to_work) ? 'checked' : ''}}>
@if($errors->has('headline')) {{$errors->first('headline')}} @endif
@if($errors->has('bio')) {{$errors->first('bio')}} @endif

{{__('Role preferences')}}

{{__('These preferences can power future alerts and recommendations.')}}

@if($errors->has('desired_job_titles')) {{$errors->first('desired_job_titles')}} @endif
@if($errors->has('desired_locations')) {{$errors->first('desired_locations')}} @endif
{{__('Choose from existing skills or type a new one and press enter.')}} @if($errors->has('desired_skills')) {{$errors->first('desired_skills')}} @endif

{{__('Work details')}}

{{__('Add practical hiring details candidates usually repeat in every application.')}}

@if($errors->has('desired_salary_max')) {{$errors->first('desired_salary_max')}} @endif

{{__('CV and visibility')}}

{{__('For now, add a link to your CV. Later this can become an uploaded CV or built-in CV builder.')}}

@if($errors->has('resume_url')) {{$errors->first('resume_url')}} @endif
{{__('Public profiles are available at a shareable talent URL in the sidebar.')}}
{{__('Profile completeness')}}
{{__('Progress')}} {{$completion}}%
@if(count($missingItems))

{{__('Next steps')}}

@foreach($missingItems as $item)
- {{$item}}
@endforeach @else

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

@endif
{{__('Candidate profile URL')}}

{{__('Customize your talent profile link. It is shareable when visibility is Public.')}}

{{$profile->isPublic() ? __('Public profile is live') : __('Private until visibility is set to Public')}}
{{url('/talent')}}/
@if($errors->has('public_slug')) {{$errors->first('public_slug')}} @endif {{__('Use letters, numbers, and dashes. Leave blank to auto-generate.')}}
@if($profile->isPublic() && $publicProfileUrl) {{__('Open')}} @else @endif
@endsection