{{-- expects: $email, $userStatus, $tokenStatus --}} @extends('layouts.default') @section('styles') @stop @section('scripts') @stop @section('panel-heading') Email Verification @stop @section('content')
@if ($tokenStatus == TokenStatus::Valid) @if (isset($verificationType) && $verificationType == 'verify-email')

Thank you for verifying your email address. After you have been approved access, you will be sent another email which will include a link to complete your registration process. If you do not receive an email within one week, please contact our support staff to assist you.

@else

You are already registered.

@endif @elseif ($tokenStatus == TokenStatus::Expired)

It seems that your verification email has expired.

To send a new verification email, please click here

@elseif ($tokenStatus == TokenStatus::Invalid)

We cannot seem to verify your email address at this time. Please register.

@endif
@stop