@extends('backend.layout.master') @include('backend.kids.add-student-css') @section('content')

Edit Student

{{ $kid->first_name .' '.$kid->last_name }}

@csrf
@php $male = "";$female=""; if($kid->gender == 'Male'){ $male = "checked"; } if($kid->gender == 'Female'){ $female = "checked"; } @endphp
@php $selectedval = explode(',', $kid->group_id); @endphp
photo_restriction == 1) checked="" @endif name="photo_restriction" value="1">
@foreach($parents as $addonParent)
{{ $addonParent->relation_type }}

{{ $addonParent->first_name .' '.$addonParent->last_name }}

{{ $addonParent->phone }}


{{ $addonParent->email }}

@endforeach
@endsection @section('page_js') @include('backend.kids.add-student-js') @include('backend.kids.dropzonejs') @endsection