Laravel 5.4 display cookie value in laravel blade

Solution:

The way you suggested is correct:

{{ Cookie::get('user_first_name') }}

Given your comment, you probably did not set the cookie correctly. You may try:

Cookie::queue('user_first_name', 'John', 15);
return view('the-view');