@extends('layouts.app') @section('title', 'Edit Attendance Log') @section('page-title', 'Edit Attendance Log') @section('content') {{-- @section('page-description') --}} Update the attendance punch information and processing details. {{-- @endsection --}} {{-- @section('page-actions') --}} Back {{-- @endsection --}}
@csrf @method('PUT')
{{-- Header --}}

Attendance Log Information

Update the device punch information and attendance verification details.

{{-- Form --}}
{{-- Attendance Device --}}

Select the attendance device from which this punch originated.

@error('attendance_device_id')

{{ $message }}

@enderror
{{-- Device User ID --}}

User identifier registered inside the attendance device.

@error('device_user_id')

{{ $message }}

@enderror
{{-- RFID Card Number --}}

RFID card number used for the punch, if available.

@error('rfid_card_number')

{{ $message }}

@enderror
{{-- Punched At --}}

Date and time when the attendance punch occurred.

@error('punched_at')

{{ $message }}

@enderror
{{-- Device Log ID --}}

Unique log identifier supplied by the attendance device.

@error('device_log_id')

{{ $message }}

@enderror
{{-- Verification Mode --}}

Method used by the device to verify the user.

@error('verification_mode')

{{ $message }}

@enderror
{{-- Direction --}}

Indicates whether the punch represents entry or exit.

@error('direction')

{{ $message }}

@enderror
{{-- Processing Status --}}

Determines whether this raw punch has already been processed.

@error('is_processed')

{{ $message }}

@enderror
{{-- Processed At --}}

Date and time when this attendance log was processed.

@error('processed_at')

{{ $message }}

@enderror
{{-- Device Payload --}}

Optional raw JSON payload received from the attendance device.

@error('payload')

{{ $message }}

@enderror
{{-- Actions --}}
Cancel
@endsection