@extends('teacher.layouts.layouts') @section('content')

Edit Student

@csrf @method('PUT') @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@foreach ($student->studentContents as $content) @php // @dd($content); $stageYear = $content->stage_year_id; $curriculumId = $content->curriculum_id; $teacherId = $content->teacher_id; $educationalStageId = $content->educational_stage_id; @endphp
@endforeach
@endsection @push('js') @include('teacher.shared.input_student') @endpush