

<?php $__env->startSection('content'); ?>
<div class="container py-4">
    <!-- Main Header with Right-Aligned Button -->
    <div class="main-header mb-4 d-flex justify-content-between align-items-center">
        <h1 class="h2">Brief Psychiatric Rating Scale (BPRS)</h1>
        <button type="button" class="btn btn-sm btn-outline-secondary show-view" data-view="dashboard">
            <i class="bi bi-arrow-left"></i> Back to Dashboard
        </button>
    </div>

    <!-- Instructions Section -->
    <h2 class="h5">Instructions</h2>
    <p>
    The Brief Psychiatric Rating Scale (BPRS) is a clinician-rated instrument used to assess the severity of psychiatric symptoms. Rate each item on a scale from 1 (not present) to 7 (extremely severe) based on the patient's condition over the past week. For each item, circle the number that best represents the severity of the symptom.
    </p>
</div>
<form id="questionForm" onsubmit="submitForm(event)" class="ajax-form forms-sample" method="post" action="<?php echo e(route('mentalHealth.bprsStore')); ?>" data-redirect="<?php echo e(route('mentalHealth.dashboard')); ?>">     
<!-- Centered Content with Card and Progress Bar --> 
<div class="d-flex justify-content-center min-vh-75 align-items-center">
    <div class="col-sm-12 col-xl-6">  

        <!-- Progress Bar -->
        <div class="progress mb-4">
  <div class="progress-bar bg-primary" id="progress-bar" role="progressbar" style="width: 0%;" 
       aria-valuenow="0" aria-valuemin="0" aria-valuemax="100">0%</div>
</div>
    

<!-- Question 1 -->
<div class="bg-secondary border border-white rounded h-100 p-4 question" data-question="1">
    <h2>Somatic Concern</h2>
    <h6 class="mb-4 text-white">
        Degree of concern over present bodily health. Rate the degree to which physical health is perceived as a problem by the patient, whether complaints have a realistic basis or not.
    </h6>
    <input type="hidden" name="question" value="Degree of concern over present bodily health. Rate the degree to which physical health is perceived as a problem by the patient, whether complaints have a realistic basis or not.
  ">
    
    <?php for($i = 1; $i <= 7; $i++): ?>
        <div class="form-check form-check-inline">
            <input class="form-check-input" type="radio" name="question1" id="question1_<?php echo e($i); ?>" value="<?php echo e($i); ?>">
            <label class="form-check-label text-white" for="question1_<?php echo e($i); ?>">
                <?php echo e(['Not present', 'Very mild', 'Mild', 'Moderate', 'Moderately severe', 'Severe', 'Extremely severe'][$i-1]); ?>

            </label>
        </div>
        <hr>
    <?php endfor; ?>

    <div class="d-flex justify-content-between mt-4">
        <button class="btn btn-outline-light" id="prevBtn" onclick="navigateQuestion(-1, event)">Previous</button>
        <button class="btn btn-primary" onclick="navigateQuestion(1, event)">Next</button>
    </div>
</div>

<!-- Question 2 -->
<div class="bg-secondary border border-white rounded h-100 p-4 question d-none" data-question="2">
    <h2>Anxiety</h2>
    <h6 class="mb-4 text-white">
    Worry, fear, or over-concern for present or future. Rate solely on the basis of verbal report of patient's own subjective experiences. Do not infer anxiety from physical signs or from neurotic defense mechanisms.
    </h6>
    <input type="hidden" name="question" value="Worry, fear, or over-concern for present or future. Rate solely on the basis of verbal report of patient's own subjective experiences. Do not infer anxiety from physical signs or from neurotic defense mechanisms.">
    
    <?php for($i = 1; $i <= 7; $i++): ?>
        <div class="form-check form-check-inline">
            <input class="form-check-input" type="radio" name="question2" id="question2_<?php echo e($i); ?>" value="<?php echo e($i); ?>">
            <label class="form-check-label text-white" for="question2_<?php echo e($i); ?>">
                <?php echo e(['Not present', 'Very mild', 'Mild', 'Moderate', 'Moderately severe', 'Severe', 'Extremely severe'][$i-1]); ?>

            </label>
        </div>
        <hr>
    <?php endfor; ?>

    <div class="d-flex justify-content-between mt-4">
        <button class="btn btn-outline-light" onclick="navigateQuestion(-1, event)">Previous</button>
        <button class="btn btn-primary" onclick="navigateQuestion(1, event)">Next</button>
    </div>
</div>

<!-- Question 3 -->
<div class="bg-secondary border border-white rounded h-100 p-4 question d-none" data-question="3">
    <h2>Depression</h2>
    <h6 class="mb-4 text-white">
    Deficiency in relating to the interviewer and to the interview situation. Rate only the degree to which the patient gives the impression of failing to be in emotional contact with other people in the interview situation.
    </h6>
    <input type="hidden" name="question" value="Deficiency in relating to the interviewer and to the interview situation. Rate only the degree to which the patient gives the impression of failing to be in emotional contact with other people in the interview situation.">
    
    <?php for($i = 1; $i <= 7; $i++): ?>
        <div class="form-check form-check-inline">
            <input class="form-check-input" type="radio" name="question3" id="question3_<?php echo e($i); ?>" value="<?php echo e($i); ?>">
            <label class="form-check-label text-white" for="question3_<?php echo e($i); ?>">
                <?php echo e(['Not present', 'Very mild', 'Mild', 'Moderate', 'Moderately severe', 'Severe', 'Extremely severe'][$i-1]); ?>

            </label>
        </div>
        <hr>
    <?php endfor; ?>

    <div class="d-flex justify-content-between mt-4">
        <button class="btn btn-outline-light" onclick="navigateQuestion(-1, event)">Previous</button>
        <button class="btn btn-primary" onclick="navigateQuestion(1, event)">Next</button>
    </div>
</div>

<!-- Question 4 -->
<div class="bg-secondary border border-white rounded h-100 p-4 question d-none" data-question="4">
    <h2>Hostility</h2>
    <h6 class="mb-4 text-white">
    Degree to which the thought processes are confused, disconnected, or disorganized. Rate on the basis of integration of the verbal products of the patient; do not rate on the basis of the patient's subjective impression of his or her own level of functioning.
    </h6>
    <input type="hidden" name="question" value="Degree to which the thought processes are confused, disconnected, or disorganized. Rate on the basis of integration of the verbal products of the patient; do not rate on the basis of the patient's subjective impression of his or her own level of functioning.">
    
    <?php for($i = 1; $i <= 7; $i++): ?>
        <div class="form-check form-check-inline">
            <input class="form-check-input" type="radio" name="question4" id="question4_<?php echo e($i); ?>" value="<?php echo e($i); ?>">
            <label class="form-check-label text-white" for="question4_<?php echo e($i); ?>">
                <?php echo e(['Not present', 'Very mild', 'Mild', 'Moderate', 'Moderately severe', 'Severe', 'Extremely severe'][$i-1]); ?>

            </label>
        </div>
        <hr>
    <?php endfor; ?>

    <div class="d-flex justify-content-between mt-4">
        <button class="btn btn-outline-light" onclick="navigateQuestion(-1, event)">Previous</button>
        <button class="btn btn-primary" onclick="navigateQuestion(1, event)">Next</button>
    </div>
</div>

<!-- Question 5 -->
<div class="bg-secondary border border-white rounded h-100 p-4 question d-none" data-question="5">
    <h2>Paranoia</h2>
    <h6 class="mb-4 text-white">
    Over-concern or remorse for past behavior. Rate on the basis of the patient's subjective experiences of guilt as evidenced by verbal report with appropriate affect; do not infer guilt feelings from depression, anxiety, or neurotic defenses.
    </h6>
    <input type="hidden" name="question" value="Over-concern or remorse for past behavior. Rate on the basis of the patient's subjective experiences of guilt as evidenced by verbal report with appropriate affect; do not infer guilt feelings from depression, anxiety, or neurotic defenses.">
    
    <?php for($i = 1; $i <= 7; $i++): ?>
        <div class="form-check form-check-inline">
            <input class="form-check-input" type="radio" name="question5" id="question5_<?php echo e($i); ?>" value="<?php echo e($i); ?>">
            <label class="form-check-label text-white" for="question5_<?php echo e($i); ?>">
                <?php echo e(['Not present', 'Very mild', 'Mild', 'Moderate', 'Moderately severe', 'Severe', 'Extremely severe'][$i-1]); ?>

            </label>
        </div>
        <hr>
    <?php endfor; ?>

    <div class="d-flex justify-content-between mt-4">
        <button class="btn btn-outline-light" onclick="navigateQuestion(-1, event)">Previous</button>
        <button class="btn btn-primary" onclick="navigateQuestion(1, event)">Next</button>
    </div>
</div>

<!-- Question 6 -->
<div class="bg-secondary border border-white rounded h-100 p-4 question d-none" data-question="6">
    <h2>Tension</h2>
    <h6 class="mb-4 text-white">
        Physical and motor manifestations of tension, "nervousness," and heightened activation level. Tension should be rated solely on the basis of physical signs and motor behavior and not on the basis of subjective experiences of tension reported by the patient.
    </h6>
    <input type="hidden" name="question" value="Physical and motor manifestations of tension, nervousness, and heightened activation level. Tension should be rated solely on the basis of physical signs and motor behavior and not on the basis of subjective experiences of tension reported by the patient.">
    
    <?php for($i = 1; $i <= 7; $i++): ?>
        <div class="form-check form-check-inline">
            <input class="form-check-input" type="radio" name="question6" id="question6_<?php echo e($i); ?>" value="<?php echo e($i); ?>">
            <label class="form-check-label text-white" for="question6_<?php echo e($i); ?>">
                <?php echo e(['Not present', 'Very mild', 'Mild', 'Moderate', 'Moderately severe', 'Severe', 'Extremely severe'][$i-1]); ?>

            </label>
        </div>
        <hr>
    <?php endfor; ?>

    <div class="d-flex justify-content-between mt-4">
        <button class="btn btn-outline-light" onclick="navigateQuestion(-1, event)">Previous</button>
        <button class="btn btn-primary" onclick="navigateQuestion(1, event)">Next</button>
    </div>
</div>
 

<!-- Question 7 -->
<div class="bg-secondary border border-white rounded h-100 p-4 question d-none" data-question="7">
    <h2>Mannerisms and Posturing</h2>
    <h6 class="mb-4 text-white">
        Unusual and unnatural motor behavior which causes certain mental patients to stand out in a crowd of normal people. Rate only abnormality of movements; do not rate simple heightened motor activity here.
    </h6>
    <input type="hidden" name="question" value="Unusual and unnatural motor behavior which causes certain mental patients to stand out in a crowd of normal people. Rate only abnormality of movements; do not rate simple heightened motor activity here.">
    
    <?php for($i = 1; $i <= 7; $i++): ?>
        <div class="form-check form-check-inline">
            <input class="form-check-input" type="radio" name="question7" id="question7_<?php echo e($i); ?>" value="<?php echo e($i); ?>">
            <label class="form-check-label text-white" for="question7_<?php echo e($i); ?>">
                <?php echo e(['Not present', 'Very mild', 'Mild', 'Moderate', 'Moderately severe', 'Severe', 'Extremely severe'][$i-1]); ?>

            </label>
        </div>
        <hr>
    <?php endfor; ?>

    <div class="d-flex justify-content-between mt-4">
        <button class="btn btn-outline-light" onclick="navigateQuestion(-1, event)">Previous</button>
        <button class="btn btn-primary" onclick="navigateQuestion(1, event)">Next</button>
    </div>
</div>

<!-- Question 8 -->
<div class="bg-secondary border border-white rounded h-100 p-4 question d-none" data-question="8">
    <h2>Grandiosity</h2>
    <h6 class="mb-4 text-white">
        Exaggerated self-opinion, conviction of unusual ability or powers. Rate only on the basis of patient's statements about himself or self in relation to others, not on the basis of his demeanor in the interview situation.
    </h6>
    <input type="hidden" name="question" value="Exaggerated self-opinion, conviction of unusual ability or powers. Rate only on the basis of patient's statements about himself or self in relation to others, not on the basis of his demeanor in the interview situation.">
    
    <?php for($i = 1; $i <= 7; $i++): ?>
        <div class="form-check form-check-inline">
            <input class="form-check-input" type="radio" name="question8" id="question8_<?php echo e($i); ?>" value="<?php echo e($i); ?>">
            <label class="form-check-label text-white" for="question8_<?php echo e($i); ?>">
                <?php echo e(['Not present', 'Very mild', 'Mild', 'Moderate', 'Moderately severe', 'Severe', 'Extremely severe'][$i-1]); ?>

            </label>
        </div>
        <hr>
    <?php endfor; ?>

    <div class="d-flex justify-content-between mt-4">
        <button class="btn btn-outline-light" onclick="navigateQuestion(-1, event)">Previous</button>
        <button class="btn btn-primary" onclick="navigateQuestion(1, event)">Next</button>
    </div>
</div>

<!-- Question 9 -->
<div class="bg-secondary border border-white rounded h-100 p-4 question d-none" data-question="9">
    <h2>Depressive Mood</h2>
    <h6 class="mb-4 text-white">
        Despondency in mood, sadness. Rate only degree of despondency; do not rate on the basis of inferences concerning depression based upon general retardation and somatic complaints.
    </h6>
    <input type="hidden" name="question" value="Despondency in mood, sadness. Rate only degree of despondency; do not rate on the basis of inferences concerning depression based upon general retardation and somatic complaints.">
    
    <?php for($i = 1; $i <= 7; $i++): ?>
        <div class="form-check form-check-inline">
            <input class="form-check-input" type="radio" name="question9" id="question9_<?php echo e($i); ?>" value="<?php echo e($i); ?>">
            <label class="form-check-label text-white" for="question9_<?php echo e($i); ?>">
                <?php echo e(['Not present', 'Very mild', 'Mild', 'Moderate', 'Moderately severe', 'Severe', 'Extremely severe'][$i-1]); ?>

            </label>
        </div>
        <hr>
    <?php endfor; ?>

    <div class="d-flex justify-content-between mt-4">
        <button class="btn btn-outline-light" onclick="navigateQuestion(-1, event)">Previous</button>
        <button class="btn btn-primary" onclick="navigateQuestion(1, event)">Next</button>
    </div>
</div>



<div class="bg-secondary border border-white rounded h-100 p-4 question d-none" data-question="10">
    <h2>Hostility</h2>
    <h6 class="mb-4 text-white">
        Animosity, contempt, belligerence, disdain for other people outside the interview situation. Rate solely on the basis of the verbal report of feelings and actions of the patient toward others; do not infer hostility from neurotic defenses, anxiety, or somatic complaints.
    </h6>
    <input type="hidden" name="question" value="Animosity, contempt, belligerence, disdain for other people outside the interview situation. Rate solely on the basis of the verbal report of feelings and actions of the patient toward others; do not infer hostility from neurotic defenses, anxiety, or somatic complaints.">
    
    <?php for($i = 1; $i <= 7; $i++): ?>
        <div class="form-check form-check-inline">
            <input class="form-check-input" type="radio" name="question10" id="question10_<?php echo e($i); ?>" value="<?php echo e($i); ?>">
            <label class="form-check-label text-white" for="question10_<?php echo e($i); ?>">
                <?php echo e(['Not present', 'Very mild', 'Mild', 'Moderate', 'Moderately severe', 'Severe', 'Extremely severe'][$i-1]); ?>

            </label>
        </div>
        <hr>
    <?php endfor; ?>

    <div class="d-flex justify-content-between mt-4">
        <button class="btn btn-outline-light" onclick="navigateQuestion(-1, event)">Previous</button>
        <button class="btn btn-primary" onclick="navigateQuestion(1, event)">Next</button>
    </div>
</div>

<!-- Question 11 -->
<div class="bg-secondary border border-white rounded h-100 p-4 question d-none" data-question="11">
    <h2>Suspiciousness</h2>
    <h6 class="mb-4 text-white">
        Belief (delusional or otherwise) that others have now, or have had in the past, malicious or discriminatory intent toward the patient. On the basis of verbal report, rate only those suspicions which are currently held whether they concern past or present circumstances.
    </h6>
    <input type="hidden" name="question" value="Belief (delusional or otherwise) that others have now, or have had in the past, malicious or discriminatory intent toward the patient. On the basis of verbal report, rate only those suspicions which are currently held whether they concern past or present circumstances.">
    
    <?php for($i = 1; $i <= 7; $i++): ?>
        <div class="form-check form-check-inline">
            <input class="form-check-input" type="radio" name="question11" id="question11_<?php echo e($i); ?>" value="<?php echo e($i); ?>">
            <label class="form-check-label text-white" for="question11_<?php echo e($i); ?>">
                <?php echo e(['Not present', 'Very mild', 'Mild', 'Moderate', 'Moderately severe', 'Severe', 'Extremely severe'][$i-1]); ?>

            </label>
        </div>
        <hr>
    <?php endfor; ?>

    <div class="d-flex justify-content-between mt-4">
        <button class="btn btn-outline-light" onclick="navigateQuestion(-1, event)">Previous</button>
        <button class="btn btn-primary" onclick="navigateQuestion(1, event)">Next</button>
    </div>
</div>

<!-- Question 12 -->
<div class="bg-secondary border border-white rounded h-100 p-4 question d-none" data-question="12">
    <h2>Hallucinatory Behavior</h2>
    <h6 class="mb-4 text-white">
        Perceptions without normal external stimulus correspondence. Rate only those experiences which are reported to have occurred within the last week and which are described as distinctly different from the thought and imagery processes of normal people.
    </h6>
    <input type="hidden" name="question" value="Perceptions without normal external stimulus correspondence. Rate only those experiences which are reported to have occurred within the last week and which are described as distinctly different from the thought and imagery processes of normal people.">
    
    <?php for($i = 1; $i <= 7; $i++): ?>
        <div class="form-check form-check-inline">
            <input class="form-check-input" type="radio" name="question12" id="question12_<?php echo e($i); ?>" value="<?php echo e($i); ?>">
            <label class="form-check-label text-white" for="question12_<?php echo e($i); ?>">
                <?php echo e(['Not present', 'Very mild', 'Mild', 'Moderate', 'Moderately severe', 'Severe', 'Extremely severe'][$i-1]); ?>

            </label>
        </div>
        <hr>
    <?php endfor; ?>

    <div class="d-flex justify-content-between mt-4">
        <button class="btn btn-outline-light" onclick="navigateQuestion(-1, event)">Previous</button>
        <button class="btn btn-primary" onclick="navigateQuestion(1, event)">Next</button>
    </div>
</div>



<!-- Question 13 -->
<div class="bg-secondary border border-white rounded h-100 p-4 question d-none" data-question="13">
    <h2>Motor Retardation</h2>
    <h6 class="mb-4 text-white">
        Reduction in energy level evidenced in slowed movements and speech, reduced body tone, decreased number of movements. Rate on the basis of observed behavior of the patient only; do not rate on the basis of patient's subjective impression of own energy level.
    </h6>
    <input type="hidden" name="question" value="Reduction in energy level evidenced in slowed movements and speech, reduced body tone, decreased number of movements. Rate on the basis of observed behavior of the patient only; do not rate on the basis of patient's subjective impression of own energy level.">
    
    <?php for($i = 1; $i <= 7; $i++): ?>
        <div class="form-check form-check-inline">
            <input class="form-check-input" type="radio" name="question13" id="question13_<?php echo e($i); ?>" value="<?php echo e($i); ?>">
            <label class="form-check-label text-white" for="question13_<?php echo e($i); ?>">
                <?php echo e(['Not present', 'Very mild', 'Mild', 'Moderate', 'Moderately severe', 'Severe', 'Extremely severe'][$i-1]); ?>

            </label>
        </div>
        <hr>
    <?php endfor; ?>

    <div class="d-flex justify-content-between mt-4">
        <button class="btn btn-outline-light" onclick="navigateQuestion(-1, event)">Previous</button>
        <button class="btn btn-primary" onclick="navigateQuestion(1, event)">Next</button>
    </div>
</div>

<!-- Question 14 -->
<div class="bg-secondary border border-white rounded h-100 p-4 question d-none" data-question="14">
    <h2>Uncooperativeness</h2>
    <h6 class="mb-4 text-white">
        Evidence of resistance, unfriendliness, resentment, and lack of readiness to cooperate with the interviewer. Rate only on the basis of the patient's attitude and responses to the interviewer and the interview situation; do not rate on the basis of reported resentment or uncooperativeness outside the interview situation.
    </h6>
    <input type="hidden" name="question" value="Evidence of resistance, unfriendliness, resentment, and lack of readiness to cooperate with the interviewer. Rate only on the basis of the patient's attitude and responses to the interviewer and the interview situation; do not rate on the basis of reported resentment or uncooperativeness outside the interview situation.">
    
    <?php for($i = 1; $i <= 7; $i++): ?>
        <div class="form-check form-check-inline">
            <input class="form-check-input" type="radio" name="question14" id="question14_<?php echo e($i); ?>" value="<?php echo e($i); ?>">
            <label class="form-check-label text-white" for="question14_<?php echo e($i); ?>">
                <?php echo e(['Not present', 'Very mild', 'Mild', 'Moderate', 'Moderately severe', 'Severe', 'Extremely severe'][$i-1]); ?>

            </label>
        </div>
        <hr>
    <?php endfor; ?>

    <div class="d-flex justify-content-between mt-4">
        <button class="btn btn-outline-light" onclick="navigateQuestion(-1, event)">Previous</button>
        <button class="btn btn-primary" onclick="navigateQuestion(1, event)">Next</button>
    </div>
</div>

<!-- Question 15 -->
<div class="bg-secondary border border-white rounded h-100 p-4 question d-none" data-question="15">
    <h2>Unusual Thought Content</h2>
    <h6 class="mb-4 text-white">
        Unusual, odd, strange, or bizarre thought content. Rate here the degree of unusualness, not the degree of disorganization of thought processes.
    </h6>
    <input type="hidden" name="question" value="Unusual, odd, strange, or bizarre thought content. Rate here the degree of unusualness, not the degree of disorganization of thought processes.">
    
    <?php for($i = 1; $i <= 7; $i++): ?>
        <div class="form-check form-check-inline">
            <input class="form-check-input" type="radio" name="question15" id="question15_<?php echo e($i); ?>" value="<?php echo e($i); ?>">
            <label class="form-check-label text-white" for="question15_<?php echo e($i); ?>">
                <?php echo e(['Not present', 'Very mild', 'Mild', 'Moderate', 'Moderately severe', 'Severe', 'Extremely severe'][$i-1]); ?>

            </label>
        </div>
        <hr>
    <?php endfor; ?>

    <div class="d-flex justify-content-between mt-4">
        <button class="btn btn-outline-light" onclick="navigateQuestion(-1, event)">Previous</button>
        <button class="btn btn-primary" onclick="navigateQuestion(1, event)">Next</button>
    </div>
</div>

<!-- Question 16 -->
<div class="bg-secondary border border-white rounded h-100 p-4 question d-none" data-question="16">
    <h2>Blunted Affect</h2>
    <h6 class="mb-4 text-white">
        Reduced emotional tone, apparent lack of normal feeling or involvement.
    </h6>
    <input type="hidden" name="question" value="Reduced emotional tone, apparent lack of normal feeling or involvement.">
    
    <?php for($i = 1; $i <= 7; $i++): ?>
        <div class="form-check form-check-inline">
            <input class="form-check-input" type="radio" name="question16" id="question16_<?php echo e($i); ?>" value="<?php echo e($i); ?>">
            <label class="form-check-label text-white" for="question16_<?php echo e($i); ?>">
                <?php echo e(['Not present', 'Very mild', 'Mild', 'Moderate', 'Moderately severe', 'Severe', 'Extremely severe'][$i-1]); ?>

            </label>
        </div>
        <hr>
    <?php endfor; ?>

    <div class="d-flex justify-content-between mt-4">
        <button class="btn btn-outline-light" onclick="navigateQuestion(-1, event)">Previous</button>
        <button class="btn btn-primary" onclick="navigateQuestion(1, event)">Next</button>
    </div>
</div>

<!-- Question 17 -->
<div class="bg-secondary border border-white rounded h-100 p-4 question d-none" data-question="17">
    <h2>Excitement</h2>
    <h6 class="mb-4 text-white">
        Heightened emotional tone, increased reactivity, agitation.
    </h6>
    <input type="hidden" name="question" value="Heightened emotional tone, increased reactivity, agitation.">
    
    <?php for($i = 1; $i <= 7; $i++): ?>
        <div class="form-check form-check-inline">
            <input class="form-check-input" type="radio" name="question17" id="question17_<?php echo e($i); ?>" value="<?php echo e($i); ?>">
            <label class="form-check-label text-white" for="question17_<?php echo e($i); ?>">
                <?php echo e(['Not present', 'Very mild', 'Mild', 'Moderate', 'Moderately severe', 'Severe', 'Extremely severe'][$i-1]); ?>

            </label>
        </div>
        <hr>
    <?php endfor; ?>

    <div class="d-flex justify-content-between mt-4">
        <button class="btn btn-outline-light" onclick="navigateQuestion(-1, event)">Previous</button>
        <button class="btn btn-primary" onclick="navigateQuestion(1, event)">Next</button>
    </div>
</div>

<!-- Question 18 -->
<div class="bg-secondary border border-white rounded h-100 p-4 question d-none" data-question="18">
    <h2>Disorientation</h2>
    <h6 class="mb-4 text-white">
        Confusion or lack of proper association for person, place, or time.
    </h6>
    <input type="hidden" name="question" value="Confusion or lack of proper association for person, place, or time.">
    
    <?php for($i = 1; $i <= 7; $i++): ?>
        <div class="form-check form-check-inline">
            <input class="form-check-input" type="radio" name="question18" id="question18_<?php echo e($i); ?>" value="<?php echo e($i); ?>">
            <label class="form-check-label text-white" for="question18_<?php echo e($i); ?>">
                <?php echo e(['Not present', 'Very mild', 'Mild', 'Moderate', 'Moderately severe', 'Severe', 'Extremely severe'][$i-1]); ?>

            </label>
        </div>
        <hr>
    <?php endfor; ?>

    <div class="d-flex justify-content-between mt-4">
        <button class="btn btn-outline-light" onclick="navigateQuestion(-1, event)">Previous</button>
        <button class="btn btn-primary" onclick="navigateQuestion(1, event)">Next</button>
    </div>
</div>




<!-- Question 19 -->
<div class="bg-secondary border border-white rounded h-100 p-4 question d-none" data-question="19">
    <h2>Self-neglect</h2>
    <h6 class="mb-4 text-white">
        Personal hygiene, appearance, and self-care below the usual standards for the patient and their environment.
    </h6>
    <input type="hidden" name="question" value="Personal hygiene, appearance, and self-care below the usual standards for the patient and their environment.">
    
    <?php for($i = 1; $i <= 7; $i++): ?>
        <div class="form-check form-check-inline">
            <input class="form-check-input" type="radio" name="question19" id="question19_<?php echo e($i); ?>" value="<?php echo e($i); ?>">
            <label class="form-check-label text-white" for="question19_<?php echo e($i); ?>">
                <?php echo e(['Not present', 'Very mild', 'Mild', 'Moderate', 'Moderately severe', 'Severe', 'Extremely severe'][$i-1]); ?>

            </label>
        </div>
        <hr>
    <?php endfor; ?>

    <div class="d-flex justify-content-between mt-4">
        <button class="btn btn-outline-light" onclick="navigateQuestion(-1, event)">Previous</button>
        <button class="btn btn-primary" onclick="navigateQuestion(1, event)">Next</button>
    </div>
</div>

<!-- Question 20 -->
<div class="bg-secondary border border-white rounded h-100 p-4 question d-none" data-question="20">
    <h2>Bizarre Behavior</h2>
    <h6 class="mb-4 text-white">
        Reports of behaviors which are unusual, bizarre, and not culturally normative (e.g., talking to self in public, hoarding garbage).
    </h6>
    <input type="hidden" name="question" value="Reports of behaviors which are unusual, bizarre, and not culturally normative (e.g., talking to self in public, hoarding garbage).">
    
    <?php for($i = 1; $i <= 7; $i++): ?>
        <div class="form-check form-check-inline">
            <input class="form-check-input" type="radio" name="question20" id="question20_<?php echo e($i); ?>" value="<?php echo e($i); ?>">
            <label class="form-check-label text-white" for="question20_<?php echo e($i); ?>">
                <?php echo e(['Not present', 'Very mild', 'Mild', 'Moderate', 'Moderately severe', 'Severe', 'Extremely severe'][$i-1]); ?>

            </label>
        </div>
        <hr>
    <?php endfor; ?>

    <div class="d-flex justify-content-between mt-4">
        <button class="btn btn-outline-light" onclick="navigateQuestion(-1, event)">Previous</button>
        <button class="btn btn-primary" onclick="navigateQuestion(1, event)">Next</button>
    </div>
</div>

<!-- Question 21 -->
<div class="bg-secondary border border-white rounded h-100 p-4 question d-none" data-question="21">
    <h2>Elated Mood</h2>
    <h6 class="mb-4 text-white">
        Elevated mood, feeling "high" or euphoric, excessive optimism.
    </h6>
    <input type="hidden" name="question" value="Elevated mood, feeling 'high' or euphoric, excessive optimism.">
    
    <?php for($i = 1; $i <= 7; $i++): ?>
        <div class="form-check form-check-inline">
            <input class="form-check-input" type="radio" name="question21" id="question21_<?php echo e($i); ?>" value="<?php echo e($i); ?>">
            <label class="form-check-label text-white" for="question21_<?php echo e($i); ?>">
                <?php echo e(['Not present', 'Very mild', 'Mild', 'Moderate', 'Moderately severe', 'Severe', 'Extremely severe'][$i-1]); ?>

            </label>
        </div>
        <hr>
    <?php endfor; ?>

    <div class="d-flex justify-content-between mt-4">
        <button class="btn btn-outline-light" onclick="navigateQuestion(-1, event)">Previous</button>
        <button class="btn btn-primary" onclick="navigateQuestion(1, event)">Next</button>
    </div>
</div>

<!-- Question 22 -->
<div class="bg-secondary border border-white rounded h-100 p-4 question d-none" data-question="22">
    <h2>Motor Hyperactivity</h2>
    <h6 class="mb-4 text-white">
        Increase in energy level evidenced in more frequent movement and/or rapid speech.
    </h6>
    <input type="hidden" name="question" value="Increase in energy level evidenced in more frequent movement and/or rapid speech.">
    
    <?php for($i = 1; $i <= 7; $i++): ?>
        <div class="form-check form-check-inline">
            <input class="form-check-input" type="radio" name="question22" id="question22_<?php echo e($i); ?>" value="<?php echo e($i); ?>">
            <label class="form-check-label text-white" for="question22_<?php echo e($i); ?>">
                <?php echo e(['Not present', 'Very mild', 'Mild', 'Moderate', 'Moderately severe', 'Severe', 'Extremely severe'][$i-1]); ?>

            </label>
        </div>
        <hr>
    <?php endfor; ?>

    <div class="d-flex justify-content-between mt-4">
        <button class="btn btn-outline-light" onclick="navigateQuestion(-1, event)">Previous</button>
        <button class="btn btn-primary" onclick="navigateQuestion(1, event)">Next</button>
    </div>
</div>

<!-- Question 23 -->
<div class="bg-secondary border border-white rounded h-100 p-4 question d-none" data-question="23">
    <h2>Distractibility</h2>
    <h6 class="mb-4 text-white">
        Degree to which the patient is distracted by environmental stimuli during the interview.
    </h6>
    <input type="hidden" name="question" value="Degree to which the patient is distracted by environmental stimuli during the interview.">
    
    <?php for($i = 1; $i <= 7; $i++): ?>
        <div class="form-check form-check-inline">
            <input class="form-check-input" type="radio" name="question23" id="question23_<?php echo e($i); ?>" value="<?php echo e($i); ?>">
            <label class="form-check-label text-white" for="question23_<?php echo e($i); ?>">
                <?php echo e(['Not present', 'Very mild', 'Mild', 'Moderate', 'Moderately severe', 'Severe', 'Extremely severe'][$i-1]); ?>

            </label>
        </div>
        <hr>
    <?php endfor; ?>

    <div class="d-flex justify-content-between mt-4">
        <button class="btn btn-outline-light" onclick="navigateQuestion(-1, event)">Previous</button>
        <button class="btn btn-primary" onclick="navigateQuestion(1, event)">Next</button>
    </div>
</div>

<!-- Question 24 -->
<div class="bg-secondary border border-white rounded h-100 p-4 question d-none" data-question="24">
    <h2>Suicidality</h2>
    <h6 class="mb-4 text-white">
        Expressed desire, intent, or actions to harm or kill self.
    </h6>
    <input type="hidden" name="question" value="Expressed desire, intent, or actions to harm or kill self.">
    
    <?php for($i = 1; $i <= 7; $i++): ?>
        <div class="form-check form-check-inline">
            <input class="form-check-input" type="radio" name="question24" id="question24_<?php echo e($i); ?>" value="<?php echo e($i); ?>">
            <label class="form-check-label text-white" for="question24_<?php echo e($i); ?>">
                <?php echo e(['Not present', 'Very mild', 'Mild', 'Moderate', 'Moderately severe', 'Severe', 'Extremely severe'][$i-1]); ?>

            </label>
        </div>
        <hr>
    <?php endfor; ?>

    <div class="d-flex justify-content-between mt-4">
                <button class="btn btn-outline-light" onclick="navigateQuestion(-1, event)">Previous</button>
                <button class="btn btn-primary" id="nextBtnfinel" onclick="navigateQuestion(1, event)">Next</button>

                <button type="submit" class="btn btn-success d-none" id="submitBtn">Submit</button>
            </div> 
</div>
  



</div>
  
  </div>
  
  </div>
  </div>
  </form>
  <!-- JavaScript for Navigation -->
  
  <?php $__env->stopSection(); ?> 
<?php echo $__env->make('mental.layouts.app', array_diff_key(get_defined_vars(), ['__data' => 1, '__path' => 1]))->render(); ?><?php /**PATH /var/www/html/resources/views/mental/psychosis_schizophrenia/bprs.blade.php ENDPATH**/ ?>