@extends('portal.portal-layout') @section('pages-content')
@if($child) @svg('img/icons/home') Home @svg('img/icons/breadcrumb-delimiter') Children @svg('img/icons/breadcrumb-delimiter') {{ $child->full_name }} @else Back to dashboard @endif
{{-- Show child form if child is selected, otherwise show children list--}} @if($child)

{{ $child->full_name }}'s details

Update {{ $child->full_name }}'s details in the form below.

@if(session()->has('success')) @endif
@csrf
Back to dashboard @else

My children's details

Select your child which details you want to update

@foreach($user->children as $child)
{{ $child->full_name }} @svg('img/icons/right-arrow', 'text-blue-500')
@endforeach
@endif @endsection