Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
storage
/
framework
/
views
:
1c24d12757a726969953f8590b14144348940fe7.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<div class="row"> <div class="col-12"> <form method="post" action="<?php echo e(route('updatewebinfo')); ?>" id="appinfoform" enctype="multipart/form-data"> <?php echo method_field('PUT'); ?> <?php echo csrf_field(); ?> <div class=" form-row"> <div class="form-group col-md-6"> <h5 class="">Website Name</h5> <input type="text" name="site_name" class="form-control " value="<?php echo e($settings->site_name); ?>" required> </div> <div class="form-group col-md-6"> <h5 class="">Website Title</h5> <input type="text" name="site_title" class="form-control " value="<?php echo e($settings->site_title); ?>" required> </div> <div class="form-group col-md-6"> <h5 class="">Website Keywords</h5> <input type="text" name="keywords" class="form-control " value="<?php echo e($settings->keywords); ?>" required> </div> <div class="form-group col-md-6"> <h5 class="">Website Url (https://yoursite.com)</h5> <input type="text" placeholder="https://yoursite.com" name="site_address" class="form-control " value="<?php echo e($settings->site_address); ?>" required> </div> <div class="form-group col-md-12"> <h5>Live Chat</h5> <textarea name="tawk_to" id="livechat" class="form-control" rows="4"><?php echo e($settings->tawk_to); ?></textarea> </div> <div class="form-group col-md-12"> <h5 class="">Website Description</h5> <textarea name="description" class="form-control " rows="4"><?php echo e($settings->description); ?></textarea> </div> </div> <div class=" form-row"> <div class="form-group col-md-12"> <h5 class="">Announcement</h5> <textarea name="update" class="form-control " rows="2"><?php echo e($settings->newupdate); ?></textarea> </div> <div class="form-group col-md-6"> <h5 class="">Welcome messages for new registered users</h5> <textarea name="welcome_message" class="form-control " rows="2"><?php echo e($settings->welcome_message); ?></textarea> <small class="">This message will be displayed to users whose registration date is less than or equal to 3 days</small> </div> <div class="form-group col-md-6"> <h5 class="">Purchase/License Code</h5> <input name="purchase_code" class="form-control " type="text" value="<?php echo e($moresettings->purchase_code); ?>"> </div> <div class="form-group col-md-6"> <h5 class="">Personal Access Token</h5> <input name="merchant_key" class="form-control" type="text" value="<?php echo e($settings->merchant_key); ?>"> </div> <div class="form-group col-md-6"> <h5 class="">Timezone</h5> <select name="timezone" class="form-control select2"> <option><?php echo e($settings->timezone); ?></option> <?php $__currentLoopData = $timezones; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $list): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <option value="<?php echo e($list); ?>"><?php echo e($list); ?></option> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </select> </div> <div class="form-group col-md-6"> <h5 class="">Installation Type</h5> <select name="install_type" class="form-control "> <option><?php echo e($settings->install_type); ?></option> <option>Main-Domain</option> <option>Sub-Domain</option> <option>Sub-Folder</option> </select> </div> </div> <div class="form-row"> <div class="form-group col-md-6"> <h5 class="">Logo (Recommended size; max width, 200px and max height 100px.)</h5> <input name="logo" class="form-control " type="file"> <div class="text-center border p-2 mt-2 rounded-none"> <img src="<?php echo e(asset('storage/' . $settings->logo)); ?>" alt="" class="w-25 img-fluid"> </div> </div> <div class="form-group col-md-6"> <h5 class="">Favicon (Recommended size: max width, 32px and max height 32px.)</h5> <input name="favicon" class="form-control " type="file"> <div class="text-center border p-2 mt-2 rounded-none"> <img src="<?php echo e(asset('storage/' . $settings->favicon)); ?>" alt="" class="w-25 img-fluid"> </div> </div> </div> <div class="mt-3 form-row"> <div class="col-12"> <input type="submit" class="px-5 btn btn-primary btn-lg" value="Update"> </div> </div> </form> </div> </div> <?php /**PATH /home/fundopuh/trader.fxex.org/resources/views/admin/Settings/AppSettings/webinfo.blade.php ENDPATH**/ ?>