mirror of https://github.com/4xmen/xshop.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
234 B
PHTML
11 lines
234 B
PHTML
2 years ago
|
@if(session()->has('message'))
|
||
|
<div class="alert alert-info">
|
||
|
{{ session()->get('message') }}
|
||
|
</div>
|
||
|
@endif
|
||
|
@foreach($errors->all() as $err)
|
||
|
<div class="alert alert-danger">
|
||
|
{{$err}}
|
||
|
</div>
|
||
|
@endforeach
|