invoiceninja/resources/views/errors/list.blade.php
2019-01-30 21:45:46 +11:00

7 lines
135 B
PHP
Executable file

@if (count($errors))
@foreach ($errors as $error)
<p>{{ $error }}</p>
@endforeach
@else
There are no errors
@endif