@extends('front.layouts.master') @section('title', 'Resume Edit') @push('post_styles') @endpush @section('content')
@include('front.pages.candidate.candidate-sidebar')
@csrf
@php $image = ''; if ( fileExists( $folder = 'candidates', $fileName = authCheck()->candidate?->candidate_image, ) == true && authCheck()->candidate?->candidate_image !== '' ) { $image = 'storage/candidates/' . authCheck()->candidate->candidate_image; } @endphp

{{ translate('Upload Images') }}

@csrf
{{ translate('Your Skills') }}:
@csrf
{{ translate('Educational Qualification') }}:
@if (is_array($candidate->education_info)) @php $i = 0; @endphp @foreach ($candidate->education_info as $key => $educationInfo) @php $i++; @endphp
{{ translate('Academic Information') }}:
@endforeach @endif
@csrf
{{ translate('Employment Information') }}:
@if (is_array($candidate->professional_info)) @php $i = 0; @endphp @foreach ($candidate->professional_info as $key => $professionInfo) @php $i++; @endphp
{{ translate('Add Your Experiences') }}
@endforeach @endif
@endsection @push('post_scripts') @include('js.candidate.candidate-cv') @endpush