1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 13:12:50 +01:00
invoiceninja/resources/views/errors/list.blade.php
2019-01-30 22:00:26 +11:00

8 lines
135 B
PHP
Executable File

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