| Current Path : /var/www/html/pridik/backend/views/site/ |
| Current File : /var/www/html/pridik/backend/views/site/error.php |
<?php
use yii\helpers\Html;
/* @var $this yii\web\View */
/* @var $name string */
/* @var $message string */
/* @var $exception Exception */
$this->title = $name;
$this->context->layout = 'empty';
?>
<!-- Main content -->
<section class="content">
<div class="middle-box text-center animated fadeInDown">
<h2 class="headline text-info"><i class="fa fa-warning text-yellow"></i></h2>
<div class="error-content">
<h3><?= $name ?></h3>
<p>
<?= nl2br(Html::encode($message)) ?>
</p>
<p>
<?= Yii::t('app', 'The above error occurred while the Web server was processing your request.
Please contact us if you think this is a server error. Thank you.
Meanwhile, you may <a href="{homeUrl}">return to dashboard</a> or try using the search
form.', [
'homeUrl' => Yii::$app->homeUrl,
]); ?>
</p>
</div>
</div>
</section>