You forgot your password? Here you can easily retrieve a new password.
@if(\Session::get('success'))
{{ \Session::get('success') }}
@endif
{{ \Session::forget('success') }}
@if(\Session::get('error'))
{{ \Session::get('error') }}
@endif
{{ \Session::forget('error') }}
@php
$uriSegments = explode("/", parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH));
// print_r($uriSegments);die;
$email = array_pop($uriSegments);
$token = $uriSegments[4];
@endphp
@csrf
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
@if ($errors->has('confirm_email'))
{{ $errors->first('confirm_email') }}
@endif