File "notification.blade.php"

Full path: /home/qooetu/costes.qooetu.com/resources/views/layout/notification.blade.php
File size: 324 B (324 B bytes)
MIME-type: text/plain
Charset: utf-8

Download   Open   Edit   Advanced Editor &nnbsp; Back

@if(count($errors)>0)
	<div class="alert alert-danger">
	<button type="button" class="close" data-dismiss="alert">&times;</button>
	
	<p><strong>OOPs</strong> there are some problems with inputs.
	<ul>
	@foreach($errors->all() as $error)
	      <li>{{$error}}</li>
	      
	@endforeach
	
	</ul>
	</div>
@endif