@extends('layouts.app') @section('title', $hasPin ? 'Renew T-Pin' : 'Create T-Pin') @section('contents')

{{ $hasPin && ! $expired ? 'Manage T-Pin' : ($expired ? 'Renew T-Pin' : 'Create T-Pin') }}

Your T-Pin is a 4-digit code @if($loginEnabled && $signatureEnabled) used for login and signatures @elseif($loginEnabled) used for login @else used before signature actions @endif . It expires every {{ (int) $expiryDays }} days. @if($forceLogoutAfter) After saving, you will be signed out and must log in with your new T-Pin. @endif

@csrf
@error('t_pin')
{{ $message }}
@enderror
@error('t_pin_confirmation')
{{ $message }}
@enderror
@unless($forceLogoutAfter) Back to profile @endunless
@endsection