@extends('app.my-account.layout-lite') @section('page')

Login Attempt Verification Pins

@include('app.my-account.admin.login-attempts.filters')
@foreach ($records as $record) @endforeach
Created At Email Address Name Token Phone Last Sent Pin Verified
{{ friendly_date($record->created_at ?? $record->updated_at) }} {{ $record->email }} {{ $record->displayName() }} {{ $record->pin }} {{ $record->phone_number }} {{ $record->pin_last_updated_at ? friendly_date($record->pin_last_updated_at) : '---' }} @if($record->was_pin_validation_successful) YES @else NO @endif
{{ $records->appends(request()->input())->links() }}
@endsection