@extends('layouts/blankLayout') @section('title', 'User Forgot Password') @section('page-style') @endsection @section('content')
Logo
Payin • Payout • Provider Dashboard

User Password Recovery

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if (session('success'))
{{ session('success') }}
@endif @if (session('newPassword'))

Your password has been reset successfully.

Use this password to login:

{{ session('newPassword') }}

Note: Please change this password after you log in.

Go to Login
@else
@csrf
@if (session('showOtpInput'))
@else @endif
@endif
@endsection @section('js') @endsection