Last active
March 11, 2016 11:20
-
-
Save Kcko/b559bca2b29182dd31f1 to your computer and use it in GitHub Desktop.
Flashes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div n:if="$flashes"> | |
<div n:foreach="$flashes as $flash" class="alert-{$flash->type}">{$flash->message}</div> | |
</div> | |
<div n:if="$form->hasErrors()"> | |
<div n:foreach="$form->errors as $error" class="alert-error">{$error}</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment