@extends('layouts.main_dashboard.app') @php($routePrefix = auth()->user()?->usesStaffPortal() ? 'teacher' : 'admin') @section('styles') @endsection @section('title', __('dashboard.Add New Mark')) @section('page_heading', __('dashboard.Add New Mark')) @section('breadcrumb') @endsection @section('actions') {{ __('dashboard.Back') }} @endsection @section('content')
{{ __('dashboard.Add New Mark') }}

{{ __('dashboard.Create a new mark record for this course') }}

{{ __('dashboard.Record the evaluation details once, then assign marks and absence status for every student from one screen.') }}

{{ __('dashboard.Course') }}
{{ $course->name }}
{{ __('dashboard.Students') }} {{ $students->count() }}
{{ __('dashboard.Workflow') }} {{ __('dashboard.Create & Publish') }}
@csrf
{{ __('dashboard.Mark Details') }} {{ __('dashboard.Basic information about the evaluation record.') }}
{{ __('dashboard.Students and Marks') }} {{ __('dashboard.Set each student mark and mark absent students in the same table.') }}
@foreach($students as $student) @endforeach
{{ __('dashboard.Student Name') }} {{ __('dashboard.Mark') }} {{ __('dashboard.Absent') }}
{{ $student->name }} {{ $student->email }}
{{ __('dashboard.Cancel') }}
@endsection