@extends('template.layout') @section('title', 'Account Management') @section('submenuItem', 'accountmanagement') @section('content')
Security Questions
These security questions will be used to help you recover your account in case you forget your password or lose access. Keeping your answers safe and accurate is very important.

By correctly answering these questions in the recovery panel, you will be able to change your account email and password.

Tip: Keep your answers simple — use single words, avoid spaces and capital letters, because during recovery you will need to enter the answers exactly as you wrote them. Important restrictions on answers: Answers must contain only lowercase letters (a–z) and spaces, without special characters. Please enter simple words or short phrases only.
Set Security Questions
@csrf
@php $questions = config('security.questions'); $questionsPerRow = 3; $rowClass = 'Even'; @endphp @for ($i = 0; $i < 3; $i++) @php $rowClass = ($rowClass === 'Odd') ? 'Even' : 'Odd'; @endphp @endfor
Question {{ $i + 1 }}:

@endsection