CasperSecurity
<x-guest-layout>
<!-- Session Status -->
<div class="authincation min-h-[100vh] h-full flex">
<div class="container-fluid h-full pt-0 w-full px-[12.5px]">
<div class="row h-full">
<div class="lg:w-1/2 w-full mx-auto self-center">
<div class="login-form mx-auto max-w-[600px] lg:px-[50px] lg:py-0 sm:p-[25px] p-[14px]">
<div class="text-center">
<h3 class="title mb-2 text-[2.25rem] font-bold">UIET FINANCE</h3>
<p class="mb-4">Sign in to your account to start using Finance Platform</p>
</div>
<x-auth-session-status class="mb-4" :status="session('status')" />
<form method="POST" action="{{ route('login') }}">
@csrf
<div class="mb-6">
<label class="mb-1 text-dark">Email</label>
<input type="email" name="email" :value="old('email')" required autofocus autocomplete="username" class="form-control relative text-[13px] text-body-color h-[2.813rem] border border-b-color block rounded-md py-1.5 px-3 duration-500 focus:border-primary dark:hover:border-b-color outline-none w-full" >
<x-input-error :messages="$errors->get('email')" class="mt-2" />
</div>
<div class="mb-6 relative">
<label class="mb-1 text-dark">Password</label>
<input type="password" name="password" required autocomplete="current-password" id="dz-password" class="form-control relative text-[13px] h-[2.813rem] border border-b-color block rounded-md py-1.5 px-3 duration-500 focus:border-primary dark:hover:border-b-color outline-none w-full text-body-color" >
<span class="show-pass eye absolute right-5 bottom-[10px] text-body-color cursor-pointer">
<i class="fa fa-eye-slash"></i>
<i class="fa fa-eye"></i>
</span>
<x-input-error :messages="$errors->get('password')" class="mt-2" />
</div>
<div class="form-row flex justify-between mt-3 mb-2">
<div class="mb-3">
<div class="leading-normal block min-h-[1.3125rem] pl-[1.5em] custom-checkbox mb-4 whitespace-nowrap">
<input type="checkbox" name="remember" class="form-check-input ml-[-1.5em]" id="customCheckBox1" >
<label class="mt-[6px] text-body-color ml-[0.3125rem]" for="customCheckBox1">Remember my preference</label>
</div>
</div>
@if (Route::has('password.request'))
<div class="mb-6">
<a href="{{ route('password.request') }}" class="sm:text-sm text-xs text-primary whitespace-nowrap dark:text-white">Forgot Password?</a>
</div>
@endif
</div>
<div class="text-center mb-6">
<button type="submit" class="block w-full rounded font-medium text-[15px] max-xl:text-xs leading-5 py-[0.719rem] max-xl:px-4 px-[1.563rem] max-xl:py-2.5 border border-primary text-white bg-primary hover:bg-hover-primary hover:border-hover-primary duration-300 mb-2">Sign In</button>
</div>
</form>
</div>
</div>
<div class="lg:w-1/2 w-full">
<div class="pages-left h-full bg-white dark:bg-[#242424]">
<div class="login-content text-center lg:pt-[70px] lg:pl-[70px] sm:pt-10 sm:pl-[51px] pt-[14px] pl-[14px]">
</div>
<div class="login-media text-center sm:mt-10 mt-2 justify-center">
{{-- <img src="{{asset('assets/images/login.png')}}" alt="" class="max-lg:w-[60%] w-[70%] inline-block">--}}
<center>
<lottie-player
autoplay
loop
mode="normal"
src="{{asset('animations/Accounting.json')}}"
style="width: 80%;height: 500px;"
>
</lottie-player>
</center>
</div>
</div>
</div>
</div>
</div>
</div>
</x-guest-layout>