“未找到[查看[auth.emails.password]。”,

I'm trying to test the recovry method in laravel-api-boilerplate-jwt but when I use postman and input email and post it to http://localhost:8000/api/auth/recovery it returns

{
"message": "View [auth.emails.password] not found.",
"status_code": 500
}

does anyone know why? I don't think I need a view because this is an api for a mobile app! Or is three anything I need to configure to make it work?

link to the framework :

https://github.com/francescomalatesta/laravel-api-boilerplate-jwt

if you use version 5.2 the error is in the auth.php file of the config folder. change to this confiture

'passwords' => [
    'users' => [
        'provider' => 'users',
        'email' => 'auth.emails.password', // here you change the path by 'emails.password'
        'table' => 'password_resets',
        'expire' => 60,
    ],
],