<?php $__env->startPush('title', get_phrase('500 error found')); ?>
<?php $__env->startPush('meta'); ?><?php $__env->stopPush(); ?>
<?php $__env->startPush('css'); ?><?php $__env->stopPush(); ?>
<?php $__env->startSection('content'); ?>
<!-- Start About Us -->
<section class="pb-120 pt-30 description-style mt-5">
<div class="container mt-5">
<div class="row align-items-center">
<div class="col-md-5">
<img src="<?php echo e(asset('assets/frontend/default/image/500.png')); ?>" alt="">
</div>
<div class="col-md-6 ms-auto">
<h1 class="g-title fs-28px mb-5 mt-5"><?php echo e(get_phrase('500 error found')); ?></h1>
<p class="g-text mb-4"><?php echo e(get_phrase('A technical error has occurred')); ?>. <?php echo e(get_phrase('Please contact with site administrator')); ?>.</p>
<p class="mb-2 fw-bold">
<?php echo e(get_phrase('Contact Email')); ?> :
<?php
$contact_info = json_decode(get_frontend_settings('contact_info'), true);
if (is_array($contact_info) && array_key_exists('email', $contact_info)) {
echo $contact_info['email'];
}
?>
</p>
<a class="eBtn gradient mt-5" href="<?php echo e(route('home')); ?>"><?php echo e(get_phrase('Back to home')); ?></a>
</div>
</div>
</div>
</section>
<!-- End About Us -->
<?php $__env->stopSection(); ?>
<?php $__env->startPush('js'); ?><?php $__env->stopPush(); ?>
<?php echo $__env->make('layouts.default', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH C:\xampp\htdocs\Arise\resources\views/errors/500.blade.php ENDPATH**/ ?>