We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8c2279 commit baad41cCopy full SHA for baad41c
README.md
@@ -55,12 +55,12 @@ To show them to your users, add this to your `login.blade.php`:
55
```blade
56
@if (session('confirmation'))
57
<div class="alert alert-info" role="alert">
58
- {{ session('confirmation') }}
+ {!! session('confirmation') !!}
59
</div>
60
@endif
61
@if ($errors->has('confirmation') > 0 )
62
<div class="alert alert-danger" role="alert">
63
- {{ $errors->first('confirmation') }}
+ {!! $errors->first('confirmation') !!}
64
65
66
```
0 commit comments