@extends('layouts.nursery')
@section('title', 'تعديل — '.$classroom->name)
@section('content')
@include('nursery.partials.classroom-form', [
'classroom' => $classroom,
'formAction' => route('nursery.classrooms.update', $classroom),
'formMethod' => 'PUT',
'submitLabel' => 'حفظ التعديلات',
'ageGroupLabels' => $ageGroupLabels,
])
@endsection