Skip to content

Instantly share code, notes, and snippets.

@Kcko
Last active April 12, 2016 17:26
Show Gist options
  • Save Kcko/310bf6ce5c038e6eeba2 to your computer and use it in GitHub Desktop.
Save Kcko/310bf6ce5c038e6eeba2 to your computer and use it in GitHub Desktop.
Nette form - vykreslení chyb
<!-- Jednoduché vykreslení chyb -->
<div class="error-message" n:if="$form->hasErrors()">
<div n:foreach="$form->errors as $error">{$error}</div>
</div>
{control $form errors}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment