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),