@extends('layouts.app') @section('title', 'T-Pin Settings') @push('stylesheets') @include('admin-controls.partials.settings-styles') @endpush @section('contents')
T-Pin for Login

When enabled, users must enter their T-Pin with their password. Users without a T-Pin are forced to create one after login, then logged out.

login_enabled) ? 'checked' : '' }}>
T-Pin for Signature

When enabled, Draw / Upload / Use on file require a valid T-Pin on every signature action. Does not replace password or 2FA.

signature_enabled) ? 'checked' : '' }}>
Default 90. After expiry, users must renew before login (if login T-Pin is on) or before signing (if signature T-Pin is on).
@if(($logs ?? collect())->isNotEmpty())
@foreach ($logs as $log) @endforeach
When Actor Event Details
{{ $log->created_at?->format('Y-m-d H:i') }} {{ $log->actor?->name ?? ('#'.$log->actor_user_id) }} {{ $log->event }} @if(is_array($log->meta)) {{ \Illuminate\Support\Str::limit(json_encode($log->meta), 120) }} @endif
@endif
@endsection