@extends('layouts.app') @section('style') @section('sub-header')

{{$examDetails->jobDetails->jobTitle->name ?? 'N/A'}}

@endsection @section('content') {{-- {{dd($examDetails->exam_type)}} --}}
@if($selectedCandidate->mbti_code != null && $examDetails->exam_type != 'written')
You have already given MBTI exam
@elseif($examEndNotice == true)
Exam Time Over
@elseif($totalMinutesRemainForExam > 0)
Your exam date is {{ date('l, jS \of F, Y - h:i:s A', strtotime($examDetails->exam_start_date_time))}}
@elseif($writtenGiven)
You have already given Written exam
@else
@csrf @if($examStartButtonEnable == true && $examDetails->exam_type=='mbti') @elseif($examStartButtonEnable == true && $examDetails->exam_type=='written') @endif @if($mbti_on == 0)
@if(session('alert-green'))
{{ session('alert-green') }}
@endif @if(session('alert-danger'))
{{ session('alert-danger') }}
@endif @if($errors->any())
@foreach ($errors->all() as $error)
* {{$error}}
@endforeach
@endif {{ session('status') }}

Personal Information

{{-- --}}
gender == 'Male') ? 'checked="checked"' : '' }} name="gender" class="custom-control-input required" required value="male" id="male">
gender == 'Female') ? 'checked="checked"' : '' }} class="custom-control-input required" required value="female" id="female">

Educational Qualification

@if ($errors->has('highest_education_passing_year')) {{ $errors->first('highest_education_passing_year') }} @endif
@if ($errors->has('highest_education_result')) {{ $errors->first('highest_education_result') }} @endif

Previous Job Information

Current Job Information

@endif
@endif
@endsection @section('script') @endsection