@extends('verify.layout') @section('content')
{{ __('Verify a certificate') }} {{ __('Enter the certificate number and the last name of the certificate holder to check whether it is genuine and currently valid.') }}
@if ($result === 'valid') {{ __('This certificate number and last name match a currently valid certificate.') }} @elseif ($result === 'invalid') {{ __('No currently valid certificate matches that certificate number and last name.') }} @endif
@csrf @error('certificate_number') {{ $message }} @enderror @error('holder_last_name') {{ $message }} @enderror @if (filled(config('services.turnstile.site_key')))
@error('cf-turnstile-response') {{ $message }} @enderror @push('scripts') @endpush @endif {{ __('Check certificate') }}
@endsection