PHP Classes

File: resources/views/vendor/jetstream/components/validation-errors.blade.php

Recommend this page to a friend!
  Classes of Julio Vergara   PHP URL Shortener API   resources/views/vendor/jetstream/components/validation-errors.blade.php   Download  
File: resources/views/vendor/jetstream/components/validation-errors.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP URL Shortener API
Provides an API to create and expand short URLs
Author: By
Last change:
Date: 2 years ago
Size: 355 bytes
 

Contents

Class file image Download
@if ($errors->any())
    <div {{ $attributes }}>
        <div class="font-medium text-red-600">{{ __('Whoops! Something went wrong.') }}</div>

        <ul class="mt-3 list-disc list-inside text-sm text-red-600">
            @foreach ($errors->all() as $error)
                <li>{{ $error }}</li>
            @endforeach
        </ul>
    </div>
@endif