1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/resources/views/errors/list.blade.php
2017-08-29 12:43:57 +03:00

8 lines
135 B
PHP

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