Test Result
@if(!empty($getpersonalinfo))
@php
/*$auth = Auth::guard('corporate')->user();
$corporate_custom_settings= \App\Helper\HireMeeHelper::getCorporateSettingsDetails($auth->company_id);*/
@endphp
Result For {{ $getpersonalinfo->first_name}} {{ $getpersonalinfo->last_name ?? '--'}}
@endif
@if($question_format == 2)
Career Readiness Report
@elseif($question_format == 3)
Career Navigation Report
@endif
@if(!$is_psychometric_only)
Consolidate Report(PDF)
@endif
@php
$name = '';
$date = '';
if(isset($getpersonalinfo->first_name) && (isset($getpersonalinfo->last_name))){
$name = $getpersonalinfo->first_name.' '.$getpersonalinfo->last_name;
}
if(isset($testtakendate) && (!is_null($testtakendate))){
$date = \Carbon\Carbon::parse($testtakendate->created_at)->formatLocalized('%d %b %Y');
}
@endphp
{!! Form::hidden('assign_id',$assign_id,['id'=>'js-pro-test-assign_id']) !!}
{!! Form::hidden('test_pin',$test_pin,['id'=>'js-pro-test-test_pin_id']) !!}
{!! Form::hidden('candidate_id',$candidate_id,['id'=>'js-pro-test-candidate_id']) !!}
{!! Form::hidden('section_id',$section_id,['id'=>'js-pro-test-section_id']) !!}
{!! Form::hidden('sections',$sections,array('id'=>'pre-js-pro-sections'))!!}
{!! Form::hidden('assessment_id',$assessment_id,['id'=>'js-pro-test-assessment_id']) !!}
{!! Form::hidden('is_custom_form',$is_custom_form,['id'=>'js-pro-test-is_custom_form']) !!}
{!! Form::hidden('is_feedback',$is_feedback,['id'=>'js-pro-test-is_feedback']) !!}
{!! Form::hidden('test_event_id',$test_event_id,['id'=>'js-pro-test-test_event_id']) !!}
{!! Form::hidden('name',$name,['id'=>'js-pro-test-name']) !!}
{!! Form::hidden('date',$date,['id'=>'js-pro-test-date']) !!}
{!! Form::hidden('corporate_id',Auth::guard('corporate')->user()->company_id,['id'=>'js-pro-corporate_id']) !!}
@include('include.pro.personal-info-render')