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

{{ __('dashboard.Create a fresh attendance session for the course') }}

{{ __('dashboard.Select the date and type once, then mark absent students quickly from a clean attendance list.') }}

{{ __('dashboard.Course') }}
{{ $course->name }}
{{ __('dashboard.Student Count') }} {{ $students->count() }}
@csrf
{{ __('dashboard.Record Details') }} {{ __('dashboard.Configure the attendance session settings before saving.') }}
{{ __('dashboard.Select Absent Students') }} {{ __('dashboard.Mark only absent students. Unchecked students will be treated as present.') }}
@foreach($students as $student) @endforeach
{{ __('dashboard.Cancel') }}
@endsection @section('scripts') @endsection