@extends('user.layout.master') @section('title', 'View Uploaded Resume') @section('content')
View Uploaded Resume

Uploaded Resume: {{ $resume->original_filename }}

Below is your uploaded resume. Please manually enter the information below.

Download Original

Your Uploaded Resume

@if($resume->file_type === 'pdf') @else

Document preview not available

Download to view
@endif

Enter Resume Information

@csrf @method('PUT')
Personal Information
Work Experience
@php $expIndex = 0; @endphp @forelse($resume->experiences as $experience)
@if($expIndex > 0) @endif
@php $expIndex++; @endphp @empty
@endforelse
Education
@php $eduIndex = 0; @endphp @forelse($resume->educations as $education)
@if($eduIndex > 0) @endif
@php $eduIndex++; @endphp @empty
@endforelse
Skills
@php $skillIndex = 0; @endphp @forelse($resume->skills as $skill)
@if($skillIndex > 0) @endif
@php $skillIndex++; @endphp @empty
@endforelse
Cancel
@endsection