/home/kueuepay/public_html/resources/views/admin/auth/password-forgot/reset.blade.php
@extends('admin.auth.layouts.auth-master')

@section('section')
    <div class="account-wrapper">
        <div class="account-header">
            <div class="site-logo">
                <img src="{{ get_logo($basic_settings) }}" alt="logo">
            </div>
            <h6 class="sub-title mt-0">{{ __("Reset ") }} <span>{{ __("Password") }}</span></h6>
        </div>
        <form class="account-form" action="{{ setRoute('admin.password.update') }}" method="POST">
            @csrf
            @include('admin.components.form.hidden-input',[
                'name'      => 'token',
                'value'     => $token ?? "",
            ])
            @include('admin.components.form.hidden-input',[
                'name'      => 'email',
                'value'     => $email ?? "",
            ])
            <div class="form-group">
                <div class="form-group" id="show_hide_password">
                    <input type="password" title="Enter new password" required name="password">
                    <button type="button" class="show-pass"><i class="fa fa-eye-slash" aria-hidden="true"></i></button>
                    <label>{{ __("New Password") }}</label>
                </div>
            </div>
            <div class="form-group" id="show_hide_password">
                <input type="password" title="Enter Confirm password" required name="password_confirmation">
                <button type="button" class="show-pass"><i class="fa fa-eye-slash" aria-hidden="true"></i></button>
                <label>{{ __("Confirm Password") }}</label>
            </div>
            <div class="form-group">
                <div class="forgot-item">
                    <p><a href="{{ setRoute('admin.login') }}" class="text--base">{{ __("Login") }}</a></p>
                </div>
            </div>
            <button type="submit" class="btn--base w-100 btn-loading">{{ __("Reset Password") }}</button>
        </form>
    </div>
@endsection
Payment System
top

Simple Steps to Complete Your Payment Securely and Efficiently

Making a payment on our website is quick and secure. Start by logging in or creating an account. Select your preferred payment method, input the required details, and review the information. Once you confirm everything is correct, click on the "Submit Payment" button. You’ll receive instant confirmation and can track your payment status through your account dashboard. It’s an easy and secure process.

  • Go to the Payment Section: Access the payment area on our website or app.
  • Choose Your Payment Method: Select your preferred payment option.
  • Enter Payment Details: Provide the necessary payment information.
  • Verify Your Information: Check that all details are correct.
  • Confirm Your Payment: Click "Submit Payment" to complete the transaction.
img