@extends('layouts.app') @section('content') {{-- ── Page Header ── --}}

Edit Session

{{ $attendanceSession->attendance->date->format('l, d M Y') }}

{{-- ── Form Card ── --}}
{{-- Summary bar --}}
{{ $attendanceSession->session_from->format('h:i A') }}
{{ $attendanceSession?->session_to?->format('h:i A') ?? '-' }}
{{ $attendanceSession->formatted_duration }}
@csrf @method('PUT') {{-- Attendance Record --}}
{{-- --}} @error('attendance_id')

{{ $message }}

@enderror
{{-- Session From + To side by side on sm+ --}}
{{-- Session From --}}
@error('session_from')

{{ $message }}

@enderror
{{-- Session To --}}
@error('session_to')

{{ $message }}

@enderror
{{-- Live duration preview --}}
Duration: {{ $attendanceSession->formatted_duration }}
{{-- Actions --}}
Cancel
@endsection