@extends('layouts.app') @section('content')
{{ __('Request access') }}
{{-- Global error block --}} @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

Use your work email. We’ll send you a verification link and then an administrator will approve your access to the portal.

@csrf {{-- Full name --}}
@error('name') {{ $message }} @enderror
{{-- Username --}}
@error('username') {{ $message }} @enderror
{{-- Email --}}
@error('email') {{ $message }} @enderror
{{-- Password --}}
@error('password') {{ $message }} @enderror
{{-- Password confirmation --}}
Please confirm your password.
{{-- reCAPTCHA --}}
{!! NoCaptcha::display() !!} @error('g-recaptcha-response') {{-- d-block so it shows under the widget --}} {{ $message }} @enderror
{{-- Submit --}}

After your email is verified, a Veritrust administrator will review your request.

Already have an account? Sign in

@endsection