@extends('layouts.nursery') @section('title', 'تعديل — '.$child->name) @section('content')

تعديل بيانات الطفل

{{ $child->code }} — {{ $child->name }}

@include('nursery.partials.child-form', [ 'child' => $child, 'formAction' => route('nursery.children.update', $child), 'formMethod' => 'PUT', 'submitLabel' => 'حفظ التعديلات', 'classrooms' => $classrooms, 'genderOptions' => $genderOptions, 'relationshipOptions' => $relationshipOptions, ])
@endsection