@extends('layouts.contentLayoutMaster') @section('content') {!! Form::open(['route' => ['StudentParticipations.store',['class_id' => $class->id]],'method'=>'POST' , 'onsubmit' => 'showLoader()']) !!} {{ Form::hidden('class_id',$class->id)}}

تسجيل مشاركة الفصل : {{$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->id }}# {{ $student->student_name }}
@error('report_date') {{ $message }} @enderror
{!! Form::close() !!} @endsection