@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.