@extends('layouts.app') @section('styles') {{-- Style Here --}} @vite(['resources/scss/light/assets/authentication/auth-cover.scss']) @vite(['resources/scss/dark/assets/authentication/auth-cover.scss']) @endsection @section('content')
Enter the code for verification
{{-- OTP Form --}}
@csrf
@for ($i = 0; $i < 6; $i++)
@endfor
@if ($errors->has('otp_code'))
{{ $errors->first('otp_code') }}
@endif
{{-- Resend OTP --}}

Didn't receive the code?

@csrf

@endsection @section('scripts') {{-- Scripts Here --}} @vite(['resources/js/authentication/2-Step-Verification.js']) @endsection