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

@push('css')
    
@endpush

@section('content')
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Start Account
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
<div class="new-password ptb-80">
    <div class="container">
        <div class="row justify-content-center">
            <div class="col-lg-5 col-md-5">
                <div class="new-password-area">
                    <div class="account-wrapper">
                        <span class="account-cross-btn"></span>
                        <div class="account-logo text-center">
                            <a href="{{ setRoute('frontend.index') }}" class="site-logo">
                                <img src="{{ get_logo($basic_settings) }}" alt="logo">
                            </a>
                        </div>
                        <form class="account-form ptb-30" action="{{ setRoute('user.password.reset',$token) }}" method="POST" class="account-form">
                            @csrf
                            <div class="row ml-b-20">
                                <label>{{ __("Enter New Password") }}</label>
                                <div class="col-lg-12 form-group show_hide_password">
                                    <input type="password" class="form-control form--control" name="password" placeholder="{{ __("Enter New Password") }}...">
                                    <a href="javascript:void(0)" class="show-pass"><i class="fa fa-eye-slash" aria-hidden="true"></i></a>
                                </div>
                                <label>{{ __("Enter Confirm Password") }}</label>
                                <div class="col-lg-12 form-group show_hide_password-2">    
                                    <input type="password" class="form-control form--control" name="password_confirmation" placeholder="{{ __("Enter Confirm Password") }}...">
                                    <a href="javascript:void(0)" class="show-pass"><i class="fa fa-eye-slash" aria-hidden="true"></i></a>
                                </div>
                                <div class="col-lg-12 form-group text-center pt-3">
                                    <button type="submit" class="btn--base w-100">{{ __("Reset") }}</button>
                                </div>
                            </div>
                        </form>
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    End Account
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
@endsection

@push('script')
    
@endpush
Best Practice

Best Practices

To ensure a smooth integration process and optimal performance, follow these best practices:

  1. Use secure HTTPS connections for all API requests.
  2. Implement robust error handling to handle potential issues gracefully.
  3. Regularly update your integration to stay current with any API changes or enhancements.