Skip to content

Instantly share code, notes, and snippets.

@Kcko
Last active March 11, 2016 11:20
Show Gist options
  • Save Kcko/b559bca2b29182dd31f1 to your computer and use it in GitHub Desktop.
Save Kcko/b559bca2b29182dd31f1 to your computer and use it in GitHub Desktop.
Flashes
<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