@extends('layouts.auth')
@section('title', 'Verify Account')
@push('styles')
@endpush
@section('content')
{{-- Toasts --}}
{{-- 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 --}}
{{-- Resend link --}}
Didn't receive the code?
{{--
Resend OTP
--}}
Resend OTP
{{-- (60s) --}}
@endsection