@extends("layouts.main") @section('title', trans('core.title_test_result')) @section("content")
@if (\Session::get('success'))
×

Success! Test event Successfully Updated.

@endif @if (\Session::has('error'))
Error! {!! \Session::get('error') !!}
@endif
{!! Form::open(["route" => ["pro.company.testevent.update", $testevent->id], "method" => "POST", "id" => "testevent_form"]) !!}
{!! Form::text('name', $testevent->name, ['class'=>'form-control','placeholder'=>'Enter the event name']) !!}
{!! Form::select('assessment_id', $assessments, $testevent->assessment_id, ['id' => 'assessment_id','class'=> 'js-select2','data-placeholder'=>'Select an Assessment', 'disabled' => 'disabled']) !!}

{!! Form::text('start_date', $testevent->start_date, ['id' => 'start_date','class'=> 'form-control', 'placeholder' => 'Select the Start Date', "readonly"]) !!}
{!! Form::text('end_date', $testevent->end_date, ['id' => 'end_date','class'=> 'form-control', 'placeholder' => 'Select the End Date', "readonly"]) !!}
{!! Form::text('master_key', $testevent->master_key, ['id' => 'master_key','class'=> 'form-control', 'placeholder' => 'Enter the Master key', "disabled" => "disabled"]) !!}
image_proctoring) checked @endif id='image_proctoring' value="1" onclick='changeScreenCapture(event)'>
@if(!empty($cor_custom_setting) && $cor_custom_setting->is_id_proof_required == 1)
image_proctoring) style="display:none" @endif>
image_proctoring) style="display:none" @endif >
is_id_proof_required) checked @endif onclick='changeIdProof(this)' >
@endif

window_proctoring) checked @endif >
window_proctoring) style="display:none" @endif > @php $retries_list = [ 1 => "1 Retry", 2 => "2 Retry", 3 => "3 Retry", 4 => "4 Retry", 5 => "5 Retry", 6 => "6 Retry", 7 => "7 Retry", 8 => "8 Retry", 9 => "9 Retry", 10 => "10 Retry" ]; @endphp
{!! Form::select('no_of_retries', $retries_list, $testevent->no_of_retries, ['class'=>'js-select2', 'placeholder'=> "Please select the Retry count"]) !!}
@if(!empty($cor_custom_setting) && $cor_custom_setting->is_screen_capture_enabled == 1)
is_screen_capture) checked @endif id='screen_capturing' value="1" onclick='changeIfimage(this)'>
@endif @if(!empty($cor_custom_setting) && $cor_custom_setting->live_record == 1)
live_record ==1) checked @endif id='screen_capturing' value="1" value="1" >
@endif @if(!empty($cor_custom_setting) && $cor_custom_setting->screen_share_record == 1)
screen_share_record ==1) checked @endif value="1" >
@endif
{!! Form::text('ip_white_list', $testevent->ip_white_list, ['id' => 'ip_white_list','class'=> 'form-control', 'placeholder' => 'Enter IP to add White List']) !!}
is_custom_form) checked @endif @if(!$is_editable) disabled="disabled" @endif>
Custom Choice * :
@if($is_customizedcorp == 1)
@endif
@if($is_customizedcorp == 1)
{!! Form::select('custom_entity_choice',$custom_entity,isset($testevent->custom_entity_id) ? $testevent->custom_entity_id : null, ['id' => 'custom_entity_choice','class'=> 'hme-select-style','required'=>true, 'data-placeholder'=>'Select Custome Entity']) !!}
@endif
Custom Form Fields :
@if($is_editable)Add More@endif
@php $jj = 0; @endphp @if($testevent->custom_choice !=2 ) @foreach($testevent->customform as $customfield)
Label * :
is_mandatory) checked @endif @if(!$is_editable) disabled="disabled" @endif>
field_type != 3) style="display:none" @endif> @if($is_editable)@endif
@php $kk = 0; @endphp @if($customfield->field_type == 3)
@foreach($customfield->customOptions as $option) @php $kk++; @endphp @endforeach
@endif @if($jj > 0)
@if($is_editable)@endif
@endif
@php $jj++ @endphp @endforeach @endif @if($jj == 0)
Label * :
@endif
is_feedback_form) checked @endif @if(!$is_editable) disabled="disabled" @endif>
is_feedback_form) style="display:none;" @endif>
Feedback Form Fields :
@if($is_editable)Add More@endif
{!! Form::close() !!}
@endsection @section("footer") @endsection