@extends('template.layout') @section('title', 'Answer Security Questions') @section('content')

Answer Your Security Questions


@if(session('error'))
{{ session('error') }}
@endif
@csrf @php $rowClass = 'Odd'; @endphp
Security Questions
@foreach($questionIndexes as $key => $questionId) @php $rowClass = ($rowClass === 'Odd') ? 'Even' : 'Odd'; @endphp @endforeach
{{ config('security.questions')[$questionId] ?? 'Unknown Question' }}

@endsection