File "error-alert.blade.php"

Full Path: /home/fundopuh/trader.fxex.org/resources/views/components/error-alert.blade.php
File size: 320 bytes
MIME-type: text/plain
Charset: utf-8

<div>
    @if ($errors->any())
    <div class="row">
        <div class="col-lg-12">
            <div class="alert alert-danger alert-dismissable">
                @foreach ($errors->all() as $error)
                <li>{{ $error }}</li>
            @endforeach
            </div>
        </div>
    </div>
@endif
</div>