@extends('admin.layouts.app') @section('title', 'Chỉnh sửa ứng viên') @section('page-title', 'Chỉnh sửa ứng viên') @section('content')
Quay lại

{{ $applicant->first_name }}{{ $applicant->last_name }}

Email: {{ $applicant->email }}

{{ $applicant->status_label }} Ứng tuyển {{ $applicant->created_at->format('d/m/Y') }}
Chỉnh sửa thông tin ứng viên
@csrf @method('PUT')
@error('first_name')

{{ $message }}

@enderror
@error('last_name')

{{ $message }}

@enderror
@error('email')

{{ $message }}

@enderror
@error('phone')

{{ $message }}

@enderror
@error('status')

{{ $message }}

@enderror
@error('notes')

{{ $message }}

@enderror
@error('cover_letter')

{{ $message }}

@enderror
Hủy
Vị trí ứng tuyển
{{ $applicant->jobPosition->title ?? 'N/A' }}
{{ $applicant->jobPosition->department ?? 'N/A' }}
{{ $applicant->jobPosition->location ?? 'N/A' }}
{{ $applicant->jobPosition->employment_type_label ?? 'N/A' }}
Xem chi tiết vị trí
Thông tin hiện tại
{{ $applicant->status_label }}

{{ $applicant->created_at->format('d/m/Y H:i') }}

{{ $applicant->updated_at->format('d/m/Y H:i') }}

Tài liệu
@if($applicant->resume_path) Tải CV/Resume @else

Không có CV/Resume

@endif
@endsection