Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
How I can use login api without lifetime? because I use it for mobile app
You can extend token lifetime by updating this in {your-project}\config\jwt.php file assuming this is JWT_TTL=NULL in .env file.
'ttl' => env('JWT_TTL', 60),
update 60 to your limit
I use this
'ttl' => env('JWT_TTL', 20160),