| Server IP : 139.59.63.204 / Your IP : 216.73.217.62 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ubuntu-s-1vcpu-1gb-blr1-01 6.8.0-110-generic #110-Ubuntu SMP PREEMPT_DYNAMIC Thu Mar 19 15:09:20 UTC 2026 x86_64 User : root ( 0) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/abyogasms.com/storage/framework/views/ |
Upload File : |
<!DOCTYPE html>
<html lang="en" class="h-full bg-slate-50">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login</title>
<!-- Alpine.js & Tailwind should be compiled via your Vite/Asset setup -->
<?php echo app('Illuminate\Foundation\Vite')(['resources/css/app.css', 'resources/js/app.js']); ?>
</head>
<body class="h-full flex items-center justify-center p-4">
<div class="w-full max-w-md bg-white p-8 rounded-xl shadow-sm border border-slate-200">
<img src="<?php echo e(asset('images/logo.png')); ?>" style="margin:0 auto;">
<h2 class="text-2xl font-bold text-slate-800 tracking-tight mb-1">Welcome back</h2>
<p class="text-sm text-slate-500 mb-6">Please enter your details to sign in.</p>
<form method="POST" action="/login" class="space-y-4">
<?php echo csrf_field(); ?>
<!-- Email Input -->
<div>
<label class="block text-sm font-medium text-slate-700 mb-1">Email Address</label>
<input type="email" name="email" value="<?php echo e(old('email')); ?>" required autofocus
class="w-full px-3 py-2 border border-slate-300 rounded-lg text-sm focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-blue-500 <?php $__errorArgs = ['email'];
$__bag = $errors->getBag($__errorArgs[1] ?? 'default');
if ($__bag->has($__errorArgs[0])) :
if (isset($message)) { $__messageOriginal = $message; }
$message = $__bag->first($__errorArgs[0]); ?> border-red-500 <?php unset($message);
if (isset($__messageOriginal)) { $message = $__messageOriginal; }
endif;
unset($__errorArgs, $__bag); ?>">
<?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if BLOCK]><![endif]--><?php endif; ?><?php $__errorArgs = ['email'];
$__bag = $errors->getBag($__errorArgs[1] ?? 'default');
if ($__bag->has($__errorArgs[0])) :
if (isset($message)) { $__messageOriginal = $message; }
$message = $__bag->first($__errorArgs[0]); ?>
<span class="text-xs text-red-500 mt-1 block"><?php echo e($message); ?></span>
<?php unset($message);
if (isset($__messageOriginal)) { $message = $__messageOriginal; }
endif;
unset($__errorArgs, $__bag); ?><?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if ENDBLOCK]><![endif]--><?php endif; ?>
</div>
<!-- Password Input with Alpine.js Toggle -->
<div x-data="{ show: false }">
<label class="block text-sm font-medium text-slate-700 mb-1">Password</label>
<div class="relative">
<input :type="show ? 'text' : 'password'" name="password" required
class="w-full px-3 py-2 border border-slate-300 rounded-lg text-sm focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-blue-500">
<button type="button" @click="show = !show"
class="absolute right-3 top-1/2 -translate-y-1/2 text-xs font-semibold text-slate-400 hover:text-slate-600">
<span x-text="show ? 'Hide' : 'Show'"></span>
</button>
</div>
</div>
<!-- Remember Me -->
<div class="flex items-center justify-between pt-1">
<label class="flex items-center text-sm text-slate-600 cursor-pointer">
<input type="checkbox" name="remember" class="rounded border-slate-300 text-blue-600 focus:ring-blue-500 mr-2">
Remember me
</label>
</div>
<!-- Submit -->
<button type="submit"
class="w-full bg-blue-600 hover:bg-blue-700 text-white font-medium py-2 px-4 rounded-lg text-sm transition-colors duration-150 shadow-sm">
Sign In
</button>
<a href="/">Go back to main website</a>
</form>
</div>
</body>
</html>
<?php /**PATH /var/www/abyogasms.com/resources/views/auth/login.blade.php ENDPATH**/ ?>