<?php $__env->startSection('title', __('Localization')); ?>
<?php $__env->startSection('content'); ?>
<div class="d-sm-flex align-items-center justify-content-between mb-4">
<h1 class="h3 mb-0 text-gray-800"><?php echo app('translator')->get('Localization'); ?></h1>
</div>
<div class="row">
<div class="col-md-12">
<form role="form" method="post" action="<?php echo e(route('settings.general.update', 'localization')); ?>" autocomplete="off">
<?php echo csrf_field(); ?>
<div class="card">
<div class="card-status bg-blue"></div>
<div class="card-header">
<div class="">
<h1 class="h3 mb-0 text-gray-800"><?php echo app('translator')->get('Localization'); ?></h1>
<small><?php echo app('translator')->get('You can add new language here'); ?>: <a href=<?php echo e(url(config('translation.ui_url'))); ?>><?php echo e(url(config('translation.ui_url'))); ?></a></small>
</div>
</div>
<div class="card-body">
<div class="row">
<div class="col-md-6">
<div class="form-group">
<label class="form-label"><?php echo app('translator')->get('Currency symbol'); ?></label>
<input type="text" name="CURRENCY_SYMBOL" value="<?php echo e($CURRENCY_SYMBOL); ?>" class="form-control">
</div>
<div class="form-group">
<label class="form-label"><?php echo app('translator')->get('Currency'); ?></label>
<select name="CURRENCY_CODE" class="form-control">
<?php $__currentLoopData = $currencies; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $code => $title): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<option value="<?php echo e($code); ?>" <?php echo e($code == $CURRENCY_CODE ? 'selected' : ''); ?>><?php echo e($code); ?> — <?php echo e($title); ?></option>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</select>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label class="form-label"><?php echo app('translator')->get('Default language'); ?></label><br>
<select name="APP_LOCALE" class="form-control">
<?php $__currentLoopData = $languages; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $item): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<option value="<?php echo e($item); ?>" <?php echo e($item == $APP_LOCALE ? 'selected' : ''); ?>><?php echo e($item); ?></option>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</select>
</div>
<div class="form-group">
<label class="form-label"><?php echo app('translator')->get('Timezone'); ?></label>
<select name="APP_TIMEZONE" class="form-control">
<?php $__currentLoopData = $time_zones; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $zone): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<option value="<?php echo e($zone); ?>" <?php echo e($zone == $APP_TIMEZONE ? 'selected' : ''); ?>><?php echo e($zone); ?></option>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</select>
</div>
</div>
</div>
</div>
<div class="card-footer text-right">
<button type="submit" class="btn btn-primary btn-block">
<i class="fe fe-save mr-2"></i> <?php echo app('translator')->get('Save settings'); ?>
</button>
</div>
</div>
</form>
</div>
</div>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('core::layouts.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/bouloter/public_html/Modules/Settings/Providers/../Resources/views/settings/localization.blade.php ENDPATH**/ ?>