@extends('layouts.contentLayoutMaster') @php $breadcrumbs = [[['link' => route('students.index'), 'name' => "الطلاب"], ['link' => route('students.show_exam_result'), 'name' => "نتائج الطلاب"]],['title'=> 'تسجيل نتائج الطلاب']]; @endphp @section('title', 'تسجيل نتائج الطلاب') @section('content') @section('vendor-style') @endsection @section('page-style') @endsection @component('components.forms.formCard',['title' => 'تسجيل نتائج الطلاب']) {!! Form::open(['route' => 'students.store_exam_result','method'=>'POST', 'enctype' => 'multipart/form-data']) !!} @if(isset($skipped_students) && $skipped_students) طلاب لم يتم العثور عليهم
@foreach($skipped_students as $id)
رقم الهوية : {{ $id }}
@endforeach
@endif نتائج الطلاب
@error('sheet_path') {{ $message }} @enderror
تجاهل نتائج الطالب لنفس العام واعادة تسجيل النتيجة
تسجيل النتائج عودة
{!! Form::close() !!} @endcomponent @endsection @section('vendor-script') @endsection @section('page-script') @endsection