@extends('layout.default', ['appTopMenu' => true]) @section('content')
{{ __('Reset Password') }}
@if(Session::has('success'))
{{Session::get('success')}}
@endif @if(Session::has('error'))
{{Session::get('error')}}
@endif
@csrf
Password should be minimum of 8-characters with combination of Upper & Lower case alphabets, numbers, and symbols.
{{ __('Email Address') }}
@error('email')
{{ $message }}
@enderror
{{ __('Old Password') }}
@error('opassword')
{{ $message }}
@enderror
{{ __('New Password') }}
@error('password')
{{ $message }}
@enderror
{{ __('Confirm Password') }}
{{ __('Reset Password') }}
@endsection