Skip to content

Commit baad41c

Browse files
authored
Update README.md
1 parent c8c2279 commit baad41c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,12 @@ To show them to your users, add this to your `login.blade.php`:
5555
```blade
5656
@if (session('confirmation'))
5757
<div class="alert alert-info" role="alert">
58-
{{ session('confirmation') }}
58+
{!! session('confirmation') !!}
5959
</div>
6060
@endif
6161
@if ($errors->has('confirmation') > 0 )
6262
<div class="alert alert-danger" role="alert">
63-
{{ $errors->first('confirmation') }}
63+
{!! $errors->first('confirmation') !!}
6464
</div>
6565
@endif
6666
```

0 commit comments

Comments
 (0)