Skip to content
This repository was archived by the owner on Jan 28, 2019. It is now read-only.

Commit 79d1a02

Browse files
committed
add view
1 parent 3a80f56 commit 79d1a02

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
@if (count($errors) > 0)
2+
<!-- Form Error List -->
3+
<div class="alert alert-danger">
4+
<strong>Whoops! Something went wrong!</strong>
5+
6+
<br><br>
7+
8+
<ul>
9+
@foreach ($errors->all() as $error)
10+
<li>{{ $error }}</li>
11+
@endforeach
12+
</ul>
13+
</div>
14+
@endif

0 commit comments

Comments
 (0)