{
"current_password": "12345678",
"password": "12345678",
"password_confirmation": "12345678"
}
curl --location --request PUT 'http://127.0.0.1:8000/api/v2/user/password' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {{token}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"current_password": "12345678",
"password": "12345678",
"password_confirmation": "12345678"
}'
{
"status": "string",
"message": "string",
"time": 0
}