Current File : //home/quantums/theartoflevelingup.net/wp-content/plugins/pretty-link/app/views/shared/errors.php
<?php if(!defined('ABSPATH')) { die('You are not allowed to call this page directly.'); } ?>
<?php
  if( isset($errors) and count($errors) > 0 )
  {
    ?>
<div class="error">
  <ul>
  <?php
    foreach( $errors as $error )
    {
      ?>
      <li><strong><?php esc_html_e('ERROR', 'pretty-link'); ?></strong>: <?php echo esc_html($error); ?></li>
      <?php
    }
  ?>
  </ul>
</div>
    <?php
  }