@extends('admin.layouts.main-layout') @section('title', 'Verify the OTP') @section('content')
@if ($errors->has('error')) @endif
@php if (!Auth::check()) { $image = asset('images/company/1752844538_687a48fa6bbe3.png'); $headline = 'Welcome to WaveDisk Admin Panel!'; $para = 'Please enter the OTP to get-in to your account.'; } else { $image = asset(Session::get('company_logo')); $headline = 'Hello ' . Session::get('name') . '!'; $para = 'Please enter the OTP to change the password.'; } @endphp

{{ 'Hello ' . Session::get('name') . '!' }} 👋

Please enter the OTP to change the password.

@csrf
@error('login_otp')
{{ $message }}
@enderror
@endsection @section('admin-custom-js') @endsection