@extends('layouts.auth') @section('title', 'Verify Email') @section('content')

Verify your email

We've sent a 6-digit verification code to {{ session('registration.email', '') }}

@if(session('otp_error'))
{{ session('otp_error') }}
@endif @if(session('otp_success'))
{{ session('otp_success') }}
@endif @if ($errors->any())
{{ $errors->first() }}
@endif
@csrf
@for($i = 1; $i <= 6; $i++) @endfor

Didn't receive the code?

@csrf
Check your inbox and spam folder. The code expires in 15 minutes.
@endsection