@extends('admin.layouts.email_template') @section('content')

{{__('Complete Your Profile')}}

{{__('Hello')}} {{ $user->getName() }},

{{__('We noticed that your profile on')}} {{ $siteSetting->site_name }} {{__('is not yet complete.')}}

{{__('A complete profile helps employers find you and increases your chances of getting hired!')}}

{{__('Benefits of completing your profile:')}}

  • {{__('Get discovered by more employers')}}
  • {{__('Increase your profile visibility')}}
  • {{__('Receive better job matches')}}
  • {{__('Stand out from other candidates')}}
@if(!empty($missingFields) && count($missingFields) > 0)

{{__('Still missing from your profile:')}}

    @foreach($missingFields as $field)
  • {{ $field }}
  • @endforeach
@endif
{{__('Complete My Profile Now')}}

{{__('Or copy and paste this link in your browser:')}}

{{ $profileUrl }}

{{__('Warm regards')}},
{{ $siteSetting->site_name }} {{__('Team')}}


@endsection