@extends('adminlte::page') @section('title', 'Counseling Intake Form Details') @section('content_header')

Counseling Intake Form Details

@stop @section('content')
Student Information
Name: {{ $form->student->first_name }} {{ $form->student->last_name }}
Gender: {{ $form->gender ?? '-' }}
Age: {{ $form->age ?? '-' }}
Stream: {{ $form->stream ?? '-' }}
Education Program: {{ $form->education_program ?? '-' }}
General Performance: {{ $form->g_performance ?? '-' }}
Living Situation: {{ $form->living_situation ?? '-' }}
Parent / Guardian Information
Father: {{ $form->father_name ?? '-' }}
Occupation: {{ $form->father_occupation ?? '-' }}
Phone: {{ $form->father_phone ?? '-' }}
Mother: {{ $form->mother_name ?? '-' }}
Occupation: {{ $form->mother_occupation ?? '-' }}
Phone: {{ $form->mother_phone ?? '-' }}
Guardian: {{ $form->guardian_name ?? '-' }}
Relationship: {{ $form->guardian_relationship ?? '-' }}
Parents Relationship: {{ $form->parents_relationship ?? '-' }}
Family Background
Brothers: {{ $form->siblings_brothers ?? '-' }}
Sisters: {{ $form->siblings_sisters ?? '-' }}
Birth Order: {{ $form->birth_order ?? '-' }}
Referred By: {{ $form->referred_by ?? '-' }}
Counseling Information
Counseling Type: @php $types = is_array($form->counseling_type) ? $form->counseling_type : json_decode($form->counseling_type, true) ?? []; @endphp {{ !empty($types) ? implode(', ', $types) : '-' }}
Health Problems: {{ $form->health_problems ?? '-' }}
Previous Counseling:
{{ $form->previous_counseling ?? '-' }}
Reason for Counseling:
{{ $form->reason_for_counseling ?? '-' }}
Chief Complaint:
{{ $form->chief_complaint ?? '-' }}
Understanding of Services:
{{ $form->understanding_of_services ?? '-' }}
Back to List
@stop