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

Edit Counseling Intake Form

@stop @section('content')

Edit Form - {{ $form->student->first_name ?? '' }} {{ $form->student->last_name ?? '' }}

@csrf @method('PUT')
{{-- Student --}}
{{-- Gender --}}
{{-- Age --}}
{{-- Stream --}}
{{-- Education Program --}}
{{-- General Performance --}}

Family Information

Counseling Details

@php $types = ['Individual', 'Group', 'Career', 'Family', 'Crisis']; $selectedTypes = is_array($form->counseling_type) ? $form->counseling_type : json_decode($form->counseling_type, true); @endphp @foreach($types as $type)
@endforeach
Back
@stop