@extends('layouts.master') @section('page_title', 'Parent Profile') @section('content')
Back
Generic placeholder image

{{$user->name ?? ''}} {{$user->is_guardian != null ? '(Guardian)' : ''}}

{{$user->email ?? ''}}
{{$user->phone ?? ''}}
{{$user->username ?? ''}}

@csrf @method('PUT')
@foreach($children as $child)
Generic placeholder image
{{$child->name}}
{{$child->username}}
{{$child->class_name}}
@endforeach
@php $data = ['ref' => $ref, 'parent_id' => $parent_id]; // Example PHP variable @endphp
@endsection