@include('emails.common.header') @component('emails.common.nested_table_header') @slot('first_name') {{ $candidate->first_name }} @endslot @slot('message') Your profile has been reviewed with the regards to the following job application. @endslot @endcomponent @component('emails.common.nested_table') @slot('title') {{ $job->title }} @endslot @slot('job_id') {{ $job->unique_id }} @endslot @slot('industry') @if(isset($job->min_requirements->industry1)) {{ $job->min_requirements->industry1->name }} @endif @if(isset($job->min_requirements->industry2)) {{ $job->min_requirements->industry2->name }} @endif @endslot @slot('category') @if(isset($job->min_requirements->category1)) {{ $job->min_requirements->category1->name }} @endif @if(isset($job->min_requirements->category2)) {{ $job->min_requirements->category2->name }} @endif @endslot @slot('role_profile') Link @endslot @endcomponent @component('emails.common.nested_table_footer') @slot('message') This email is to inform you that your application was unsuccessful for the following reason: @endslot @slot('reason') @component('emails.common.ul') @if($removeReason->is_experience_mismatch == '1')
  • {{ @trans('client_dashboard.experience_not_match') }}
  • @endif @if($removeReason->is_salary_mismatch == '1')
  • {{ @trans('client_dashboard.salary_not_match') }}
  • @endif @if($removeReason->is_qualification_mismatch == '1')
  • {{ @trans('client_dashboard.qualification_not_match') }}
  • @endif @if($removeReason->is_job_requirement_mismatch == '1')
  • {{ @trans('client_dashboard.job_requirement_not_match') }}
  • @endif @endcomponent @if($removeReason->other_reason) @component('emails.common.p') Personal Feedback @component('emails.common.ul')
  • {{ $removeReason->other_reason }}
  • @endcomponent @endcomponent @endif @endslot @slot('message2') We make decisions based on the information provided in your profile; please make sure it is always up to date. @endslot @endcomponent @include('emails.common.footer')