@extends('user.layout.master') @section('title', 'Review Extracted Data') @section('content')
Review Extracted Data
@if(session('success'))
{{ session('success') }}
@endif

Resume Uploaded Successfully

Your resume has been uploaded. Please review and fill in the information below. Your uploaded resume preview is on the right.

@csrf

Personal Information

Professional Summary

Work Experience

@if(!empty($uploadData['parsed_data']['experiences'])) @foreach($uploadData['parsed_data']['experiences'] as $index => $experience)
Experience {{ $index + 1 }}
@endforeach @endif

Education

@if(!empty($uploadData['parsed_data']['educations'])) @foreach($uploadData['parsed_data']['educations'] as $index => $education)
Education {{ $index + 1 }}
@endforeach @endif

Skills

@if(!empty($uploadData['parsed_data']['skills'])) @foreach($uploadData['parsed_data']['skills'] as $index => $skill)
@endforeach @endif

Your Uploaded Resume

@if($uploadData['file_type'] === 'pdf') @else

{{ $uploadData['original_filename'] }}

Download to view
@endif

Your uploaded resume stays visible while you edit information on the left.

Back to Upload
@endsection