invoiceninja/resources/views/errors/list.blade.php

8 lines
135 B
PHP
Raw Permalink Normal View History

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