@extends('layouts.auth') @section('title', 'Verify Account') @push('styles') @endpush @section('content') {{-- Toasts --}}
@if(session('success')) @endif @if(session('error')) @endif
{{-- Logo --}}
FlareSend Logo
FlareSend

Enter the OTP sent to your email

{{-- Alerts --}} @if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {{-- OTP Form --}}
@csrf
@error('otp')
{{ $message }}
@enderror
{{-- Resend link --}}

Didn't receive the code? {{-- Resend OTP --}} Resend OTP {{-- (60s) --}}

@endsection