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

Edit Student

@csrf @method('PUT') @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@foreach ($teacher->educationalStages as $stage) @php $stageYear = $stage->pivot->stage_year_id; $curriculumId = $stage->pivot->curriculum_id; @endphp
@endforeach
@endsection @push('js') @include('teacher.shared.input_group'); @endpush