

<?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">Positive and Negative Syndrome Scale (PANSS)</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 PANSS is a 30-item rating instrument evaluating the presence/absence and severity of positive, negative, and general psychopathology symptoms. Each item is accompanied by a specific definition as well as detailed anchoring criteria for all seven rating points: 1 = absent; 2 = minimal; 3 = mild; 4 = moderate; 5 = moderate-severe; 6 = severe; 7 = extreme

Rate each item based on information relating to the past week.</p>
</div>
<form id="questionForm" onsubmit="submitForm(event)" class="ajax-form forms-sample" method="post" action="<?php echo e(route('mentalHealth.panssStore')); ?>" 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>Delusions</h2>
    <h6 class="mb-4 text-white">
        Beliefs which are unfounded, unrealistic, and idiosyncratic.
    </h6>
    <input type="hidden" name="question" value="Beliefs which are unfounded, unrealistic, and idiosyncratic."> 
    
    <?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(['Absent', 'Minimal', 'Mild', 'Moderate', 'Moderate-severe', 'Severe', 'Extreme'][$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>Conceptual Disorganization</h2>
    <h6 class="mb-4 text-white">
        Disorganized process of thinking characterized by disruption of goal-directed sequencing.
    </h6>
    <input type="hidden" name="question" value="Disorganized process of thinking characterized by disruption of goal-directed sequencing."> 
    
    <?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(['Absent', 'Minimal', 'Mild', 'Moderate', 'Moderate-severe', 'Severe', 'Extreme'][$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>Hallucinatory Behavior</h2>
    <h6 class="mb-4 text-white">
        Verbal report or behavior indicating perceptions which are not generated by external stimuli.
    </h6>
    <input type="hidden" name="question" value="Verbal report or behavior indicating perceptions which are not generated by external stimuli."> 
    
    <?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(['Absent', 'Minimal', 'Mild', 'Moderate', 'Moderate-severe', 'Severe', 'Extreme'][$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>Excitement</h2>
    <h6 class="mb-4 text-white">
        Hyperactivity as reflected in accelerated motor behavior, heightened responsivity to stimuli, hypervigilance, or excessive mood lability.
    </h6>
    <input type="hidden" name="question" value="Hyperactivity as reflected in accelerated motor behavior, heightened responsivity to stimuli, hypervigilance, or excessive mood lability."> 
    
    <?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(['Absent', 'Minimal', 'Mild', 'Moderate', 'Moderate-severe', 'Severe', 'Extreme'][$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>Grandiosity</h2>
    <h6 class="mb-4 text-white">
        Exaggerated self-opinion and unrealistic convictions of superiority, including delusions of extraordinary abilities, wealth, knowledge, fame, power, and moral righteousness.
    </h6>
    <input type="hidden" name="question" value="Exaggerated self-opinion and unrealistic convictions of superiority, including delusions of extraordinary abilities, wealth, knowledge, fame, power, and moral righteousness."> 
    
    <?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(['Absent', 'Minimal', 'Mild', 'Moderate', 'Moderate-severe', 'Severe', 'Extreme'][$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>Suspiciousness/Persecution</h2>
    <h6 class="mb-4 text-white">
        Unrealistic or exaggerated ideas of persecution, as reflected in guardedness, a distrustful attitude, suspicious hypervigilance, or frank delusions that others mean harm.
    </h6>
    <input type="hidden" name="question" value="Unrealistic or exaggerated ideas of persecution, as reflected in guardedness, a distrustful attitude, suspicious hypervigilance, or frank delusions that others mean harm."> 
    
    <?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(['Absent', 'Minimal', 'Mild', 'Moderate', 'Moderate-severe', 'Severe', 'Extreme'][$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>Hostility</h2>
    <h6 class="mb-4 text-white">
        Verbal and nonverbal expressions of anger and resentment, including sarcasm, passive-aggressive behavior, verbal abuse, and assaultiveness.
    </h6>
    <input type="hidden" name="question" value="Verbal and nonverbal expressions of anger and resentment, including sarcasm, passive-aggressive behavior, verbal abuse, and assaultiveness."> 
    
    <?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(['Absent', 'Minimal', 'Mild', 'Moderate', 'Moderate-severe', 'Severe', 'Extreme'][$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>Blunted Affect</h2>
    <h6 class="mb-4 text-white">
        Diminished emotional responsiveness as characterized by a reduction in facial expression, modulation of feelings, and communicative gestures.
    </h6>
    <input type="hidden" name="question" value="Diminished emotional responsiveness as characterized by a reduction in facial expression, modulation of feelings, and communicative gestures."> 
    
    <?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(['Absent', 'Minimal', 'Mild', 'Moderate', 'Moderate-severe', 'Severe', 'Extreme'][$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>Emotional Withdrawal</h2>
    <h6 class="mb-4 text-white">
        Lack of interest in, involvement with, and affective commitment to life's events.
    </h6>
    <input type="hidden" name="question" value="Lack of interest in, involvement with, and affective commitment to life's events."> 
    
    <?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(['Absent', 'Minimal', 'Mild', 'Moderate', 'Moderate-severe', 'Severe', 'Extreme'][$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 10 -->
<div class="bg-secondary border border-white rounded h-100 p-4 question d-none" data-question="10"> 
    <h2>Poor Rapport</h2>
    <h6 class="mb-4 text-white">
        Lack of interpersonal empathy, openness in conversation, and sense of closeness, interest, or involvement with the interviewer.
    </h6>
    <input type="hidden" name="question" value="Lack of interpersonal empathy, openness in conversation, and sense of closeness, interest, or involvement with the interviewer."> 
    
    <?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(['Absent', 'Minimal', 'Mild', 'Moderate', 'Moderate-severe', 'Severe', 'Extreme'][$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>Passive/Apathetic Social Withdrawal</h2>
    <h6 class="mb-4 text-white">
        Diminished interest and initiative in social interactions due to passivity, apathy, anergy, or avolition.
    </h6>
    <input type="hidden" name="question" value="Diminished interest and initiative in social interactions due to passivity, apathy, anergy, or avolition."> 
    
    <?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(['Absent', 'Minimal', 'Mild', 'Moderate', 'Moderate-severe', 'Severe', 'Extreme'][$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>Difficulty in Abstract Thinking</h2>
    <h6 class="mb-4 text-white">
        Impairment in the use of the abstract-symbolic mode of thinking, as evidenced by difficulty in classification, forming generalizations, and proceeding beyond concrete or egocentric thinking.
    </h6>
    <input type="hidden" name="question" value="Impairment in the use of the abstract-symbolic mode of thinking, as evidenced by difficulty in classification, forming generalizations, and proceeding beyond concrete or egocentric thinking."> 
    
    <?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(['Absent', 'Minimal', 'Mild', 'Moderate', 'Moderate-severe', 'Severe', 'Extreme'][$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>Lack of Spontaneity and Flow of Conversation</h2>
    <h6 class="mb-4 text-white">
        Reduction in the normal flow of communication associated with apathy, avolition, defensiveness, or cognitive deficit.
    </h6>
    <input type="hidden" name="question" value="Reduction in the normal flow of communication associated with apathy, avolition, defensiveness, or cognitive deficit."> 
    
    <?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(['Absent', 'Minimal', 'Mild', 'Moderate', 'Moderate-severe', 'Severe', 'Extreme'][$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>Stereotyped Thinking</h2>
    <h6 class="mb-4 text-white">
        Decreased fluidity, spontaneity, and flexibility of thinking, as evidenced in rigid, repetitious, or barren thought content.
    </h6>
    <input type="hidden" name="question" value="Decreased fluidity, spontaneity, and flexibility of thinking, as evidenced in rigid, repetitious, or barren thought content."> 
    
    <?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(['Absent', 'Minimal', 'Mild', 'Moderate', 'Moderate-severe', 'Severe', 'Extreme'][$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>Somatic Concern</h2>
    <h6 class="mb-4 text-white">
        Physical complaints or beliefs about bodily illness or malfunctions.
    </h6>
    <input type="hidden" name="question" value="Physical complaints or beliefs about bodily illness or malfunctions."> 
    
    <?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(['Absent', 'Minimal', 'Mild', 'Moderate', 'Moderate-severe', 'Severe', 'Extreme'][$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>Anxiety</h2>
    <h6 class="mb-4 text-white">
        Subjective experience of nervousness, worry, apprehension, or restlessness.
    </h6>
    <input type="hidden" name="question" value="Subjective experience of nervousness, worry, apprehension, or restlessness."> 
    
    <?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(['Absent', 'Minimal', 'Mild', 'Moderate', 'Moderate-severe', 'Severe', 'Extreme'][$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>Guilt Feelings</h2>
    <h6 class="mb-4 text-white">
        Sense of remorse or self-blame for real or imagined misdeeds in the past.
    </h6>
    <input type="hidden" name="question" value="Sense of remorse or self-blame for real or imagined misdeeds in the past."> 
    
    <?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(['Absent', 'Minimal', 'Mild', 'Moderate', 'Moderate-severe', 'Severe', 'Extreme'][$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>Tension</h2>
    <h6 class="mb-4 text-white">
        Overt physical manifestations of fear, anxiety, and agitation.
    </h6>
    <input type="hidden" name="question" value="Overt physical manifestations of fear, anxiety, and agitation."> 
    
    <?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(['Absent', 'Minimal', 'Mild', 'Moderate', 'Moderate-severe', 'Severe', 'Extreme'][$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>Mannerisms and Posturing</h2>
    <h6 class="mb-4 text-white">
        Unnatural movements or posture characterized by an awkward, stilted, disorganized, or bizarre appearance.
    </h6>
    <input type="hidden" name="question" value="Unnatural movements or posture characterized by an awkward, stilted, disorganized, or bizarre appearance."> 
    
    <?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(['Absent', 'Minimal', 'Mild', 'Moderate', 'Moderate-severe', 'Severe', 'Extreme'][$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>Depression</h2>
    <h6 class="mb-4 text-white">
        Feelings of sadness, discouragement, helplessness, and pessimism.
    </h6>
    <input type="hidden" name="question" value="Feelings of sadness, discouragement, helplessness, and pessimism."> 
    
    <?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(['Absent', 'Minimal', 'Mild', 'Moderate', 'Moderate-severe', 'Severe', 'Extreme'][$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>Motor Retardation</h2>
    <h6 class="mb-4 text-white">
        Reduction in motor activity as reflected in slowing or lessening of movements and speech, diminished responsiveness to stimuli, and reduced body tone.
    </h6>
    <input type="hidden" name="question" value="Reduction in motor activity as reflected in slowing or lessening of movements and speech, diminished responsiveness to stimuli, and reduced body tone."> 
    
    <?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(['Absent', 'Minimal', 'Mild', 'Moderate', 'Moderate-severe', 'Severe', 'Extreme'][$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>Uncooperativeness</h2>
    <h6 class="mb-4 text-white">
        Active refusal to comply with the will of significant others, including the interviewer, hospital staff, or family.
    </h6>
    <input type="hidden" name="question" value="Active refusal to comply with the will of significant others, including the interviewer, hospital staff, or family."> 
    
    <?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(['Absent', 'Minimal', 'Mild', 'Moderate', 'Moderate-severe', 'Severe', 'Extreme'][$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>Unusual Thought Content</h2>
    <h6 class="mb-4 text-white">
        Thinking characterized by strange, fantastic, or bizarre ideas, ranging from those which are remote or atypical to those which are distorted, illogical, and patently absurd.
    </h6>
    <input type="hidden" name="question" value="Thinking characterized by strange, fantastic, or bizarre ideas, ranging from those which are remote or atypical to those which are distorted, illogical, and patently absurd."> 
    
    <?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(['Absent', 'Minimal', 'Mild', 'Moderate', 'Moderate-severe', 'Severe', 'Extreme'][$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>Disorientation</h2>
    <h6 class="mb-4 text-white">
        Lack of awareness of one's relationship to the milieu, including persons, place, and time.
    </h6>
    <input type="hidden" name="question" value="Lack of awareness of one's relationship to the milieu, including persons, place, and time."> 
    
    <?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(['Absent', 'Minimal', 'Mild', 'Moderate', 'Moderate-severe', 'Severe', 'Extreme'][$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 25 -->
<div class="bg-secondary border border-white rounded h-100 p-4 question d-none" data-question="25"> 
    <h2>Poor Attention</h2>
    <h6 class="mb-4 text-white">
        Failure in focused alertness manifested by poor concentration, distractibility, and failure to complete tasks.
    </h6>
    <input type="hidden" name="question" value="Failure in focused alertness manifested by poor concentration, distractibility, and failure to complete tasks."> 
    
    <?php for($i = 1; $i <= 7; $i++): ?>
        <div class="form-check form-check-inline">
            <input class="form-check-input" type="radio" name="question25" id="question25_<?php echo e($i); ?>" value="<?php echo e($i); ?>"> 
            <label class="form-check-label text-white" for="question25_<?php echo e($i); ?>"> 
                <?php echo e(['Absent', 'Minimal', 'Mild', 'Moderate', 'Moderate-severe', 'Severe', 'Extreme'][$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 26 -->
<div class="bg-secondary border border-white rounded h-100 p-4 question d-none" data-question="26"> 
    <h2>Lack of Judgment and Insight</h2>
    <h6 class="mb-4 text-white">
        Impaired awareness or understanding of one's own psychiatric condition and life situation.
    </h6>
    <input type="hidden" name="question" value="Impaired awareness or understanding of one's own psychiatric condition and life situation."> 
    
    <?php for($i = 1; $i <= 7; $i++): ?>
        <div class="form-check form-check-inline">
            <input class="form-check-input" type="radio" name="question26" id="question26_<?php echo e($i); ?>" value="<?php echo e($i); ?>"> 
            <label class="form-check-label text-white" for="question26_<?php echo e($i); ?>"> 
                <?php echo e(['Absent', 'Minimal', 'Mild', 'Moderate', 'Moderate-severe', 'Severe', 'Extreme'][$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 27 -->
<div class="bg-secondary border border-white rounded h-100 p-4 question d-none" data-question="27"> 
    <h2>Disturbance of Volition</h2>
    <h6 class="mb-4 text-white">
        Disturbance in the willful initiation, sustenance, and control of one's thoughts, behavior, movements, and speech.
    </h6>
    <input type="hidden" name="question" value="Disturbance in the willful initiation, sustenance, and control of one's thoughts, behavior, movements, and speech."> 
    
    <?php for($i = 1; $i <= 7; $i++): ?>
        <div class="form-check form-check-inline">
            <input class="form-check-input" type="radio" name="question27" id="question27_<?php echo e($i); ?>" value="<?php echo e($i); ?>"> 
            <label class="form-check-label text-white" for="question27_<?php echo e($i); ?>"> 
                <?php echo e(['Absent', 'Minimal', 'Mild', 'Moderate', 'Moderate-severe', 'Severe', 'Extreme'][$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 28 -->
<div class="bg-secondary border border-white rounded h-100 p-4 question d-none" data-question="28"> 
    <h2>Poor Impulse Control</h2>
    <h6 class="mb-4 text-white">
        Disordered regulation and control of action on inner urges, resulting in sudden, unmodulated, arbitrary, or misdirected discharge of tension and emotions.
    </h6>
    <input type="hidden" name="question" value="Disordered regulation and control of action on inner urges, resulting in sudden, unmodulated, arbitrary, or misdirected discharge of tension and emotions."> 
    
    <?php for($i = 1; $i <= 7; $i++): ?>
        <div class="form-check form-check-inline">
            <input class="form-check-input" type="radio" name="question28" id="question28_<?php echo e($i); ?>" value="<?php echo e($i); ?>"> 
            <label class="form-check-label text-white" for="question28_<?php echo e($i); ?>"> 
                <?php echo e(['Absent', 'Minimal', 'Mild', 'Moderate', 'Moderate-severe', 'Severe', 'Extreme'][$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 29 -->
<div class="bg-secondary border border-white rounded h-100 p-4 question d-none" data-question="29"> 
    <h2>Preoccupation</h2>
    <h6 class="mb-4 text-white">
        Absorption with internally generated thoughts and feelings and with autistic experiences to the detriment of reality orientation and adaptive behavior.
    </h6>
    <input type="hidden" name="question" value="Absorption with internally generated thoughts and feelings and with autistic experiences to the detriment of reality orientation and adaptive behavior."> 
    
    <?php for($i = 1; $i <= 7; $i++): ?>
        <div class="form-check form-check-inline">
            <input class="form-check-input" type="radio" name="question29" id="question29_<?php echo e($i); ?>" value="<?php echo e($i); ?>"> 
            <label class="form-check-label text-white" for="question29_<?php echo e($i); ?>"> 
                <?php echo e(['Absent', 'Minimal', 'Mild', 'Moderate', 'Moderate-severe', 'Severe', 'Extreme'][$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 30 -->
<div class="bg-secondary border border-white rounded h-100 p-4 question d-none" data-question="30"> 
    <h2>Active Social Avoidance</h2>
    <h6 class="mb-4 text-white">
        Diminished social involvement associated with unwarranted fear, hostility, or distrust.
    </h6>
    <input type="hidden" name="question" value="Diminished social involvement associated with unwarranted fear, hostility, or distrust."> 
    
    <?php for($i = 1; $i <= 7; $i++): ?>
        <div class="form-check form-check-inline">
            <input class="form-check-input" type="radio" name="question30" id="question30_<?php echo e($i); ?>" value="<?php echo e($i); ?>"> 
            <label class="form-check-label text-white" for="question30_<?php echo e($i); ?>"> 
                <?php echo e(['Absent', 'Minimal', 'Mild', 'Moderate', 'Moderate-severe', 'Severe', 'Extreme'][$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/panss.blade.php ENDPATH**/ ?>