@extends('layouts.contentLayoutMaster') @section('content') {!! Form::open(['route' => ['StudentParticipations.details.update',['report_id' => request()->report_id]],'method'=>'POST' , 'onsubmit' => 'showLoader()']) !!}
{{--

تسجيل مشاركة الفصل : {{$class->class_name}}

--}} {{ Form::label('subject_id','المادة')}} {{ Form::select('subject_id', App\Models\Subject::subjects() , old('subject_id'),['required' => true,'class'=> 'select2 form-control'. ($errors->has('subject_id') ? ' is-invalid' : null),'id' => 'subject_id']) }} @error('subject_id') {{ $message }} @enderror
@foreach($students as $student) @endforeach
اسم الطالب واجبات المشاركة الانتباة الألتزام بالتعليمات
الدرجة من 10 10 10 10
{{ $student->student_id }}# {{ $student->student_name }}
@error('report_date') {{ $message }} @enderror
{!! Form::close() !!} @endsection