Solution:
{{ Escaped variable }}
{!! Unescaped variable !!}
Quote from the documentation:
By default, Blade
{{ }}
statements are automatically sent through PHP’shtmlentities
function to prevent XSS attacks. If you do not want your data to be escaped, you may use the following syntax:
Hello, {!! $name !!}