davide-casiraghi/laravel-smart-blog

View on GitHub
resources/views/partials/error-management.blade.php

Summary

Maintainability
A
0 mins
Test Coverage
@if ($errors->any())
    <div class="alert {{ $style }}">
        <strong>Whoops!</strong> There were some problems with your input.<br><br>
        <ul>
            @foreach ($errors->all() as $error)
                <li>{{ $error }}</li>
            @endforeach
        </ul>
    </div>
@endif