@extends('layouts.app') @section('title','Hire Applicant') @section('page-title','Recruitment') @section('content')
Applicant
{{ $application->applicant->full_name }}
{{ $application->applicant->email }}

Qualification: {{ $application->applicant->qualification_label }}
Experience: {{ $application->applicant->years_of_experience }} yrs
Score: {{ round($application->weighted_score ?? 0) }}%
@if($application->auto_recommended)
Auto-Recommended
@endif
Employment Details
@csrf
A user account will be created using the applicant's email address. They will receive a temporary password and must use Forgot Password to set their own.
@endsection