File: /var/www/html/orbidirectory.com/storage/framework/views/77797682758b02b198039adc45809c1e.php
<?php $__env->startSection('title', 'ORBI Dashboard'); ?>
<?php $__env->startSection('content_header'); ?>
<h1>Dashboard</h1>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('content'); ?>
<p>Settings</p>
<div class='row'>
<div class='col-md-12'>
<div class="card card-dark">
<div class="card-header">
<h3 class="card-title">Website Logo</h3>
</div>
<form action="<?php echo e(route('settings.updateLogo')); ?>" role="form" method="post" class="jqueryValidation"
enctype="multipart/form-data">
<?php echo csrf_field(); ?>
<div class="card-body">
<div class="form-group">
<label for="website_logo">Logo</label>
<input type="file" id="website_logo" name="website_logo" required>
<?php if($website_logo): ?>
<img src="<?php echo e($website_logo); ?>" alt="Logo" width="200"
class="website-logo-preview-img">
<?php else: ?>
<p>No logo uploaded yet.</p>
<?php endif; ?>
<p class="help-block">Update the website logo here.</p>
</div>
<div class="form-group">
<label for="website_footer_logo">Footer Logo</label>
<input type="file" id="website_footer_logo" name="website_footer_logo" required>
<?php if($website_footer_logo): ?>
<img src="<?php echo e($website_footer_logo); ?>" alt="Logo" width="200"
class="website-logo-preview-img">
<?php else: ?>
<p>No logo uploaded yet.</p>
<?php endif; ?>
<p class="help-block">Update the website Footer logo here.</p>
</div>
</div>
<div class="card-footer d-flex justify-content-end">
<input type="submit" class="btn btn-dark mx-1" value="Update">
</div>
</form>
</div>
</div>
<div class='col-md-6'>
<div class="card card-dark">
<div class="card-header">
<h3 class="card-title">Website Details</h3>
</div>
<form action="<?php echo e(route('settings.website.details')); ?>" role="form" method="post"
class="jqueryValidation" enctype="multipart/form-data">
<?php echo csrf_field(); ?>
<div class="card-body">
<div class="form-group">
<label for="website_name">Website Name <span class="required">*</span></label>
<input type="text" class="form-control" id="website_name" name="website_name"
placeholder="Enter website name" value="<?php echo e(old('website_name', $website_name)); ?>" required>
</div>
<div class="form-group">
<label for="website_email">Website Email <span class="required">*</span></label>
<input type="email" class="form-control" id="website_email" name="website_email"
placeholder="Enter email address" value="<?php echo e(old('website_email', $website_email)); ?>"
required>
</div>
<div class="form-group">
<label for="notification_email">Admin Notification Email </label>
<input type="text" class="form-control" id="notification_email" name="notification_email"
placeholder="Enter Admin Notification Email(s)"
value="<?php echo e(old('notification_email', $notification_email)); ?>">
<small class="form-text text-muted">You can enter multiple emails separated by commas.</small>
</div>
<div class="form-group">
<label for="website_phone_number">Phone Number <span class="required">*</span></label>
<input type="text" class="form-control" id="website_phone_number" name="website_phone_number"
placeholder="Enter phone number"
value="<?php echo e(old('website_phone_number', $website_phone_number)); ?>" required>
</div>
<div class="form-group">
<label for="website_home_video">Website Home Video</label>
<?php if($website_home_video): ?>
<div class="mb-3">
<video width="320" height="240" controls>
<source src="<?php echo e($website_home_video); ?>" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
<?php endif; ?>
<input type="file" name="website_home_video" id="website_home_video" class="form-control"
placeholder="Upload new Website Home Video" />
</div>
<div class="form-group">
<label for="address">Address</label>
<textarea id="address" name="address" class="form-control" rows="3" placeholder="Enter address"><?php echo e(old('address', $address)); ?></textarea>
</div>
<div class="form-group">
<label for="footer_description">Footer Description</label>
<textarea id="footer_description" name="footer_description" class="form-control" rows="3" placeholder="Enter Footer Description"><?php echo e(old('footer_description', $footer_description)); ?></textarea>
</div>
<div class="form-group">
<label for="website_description">Website Footer Description</label>
<textarea id="website_description" name="website_description" class="form-control" rows="3"
placeholder="Enter Footer Description"><?php echo e(old('website_description', $website_description)); ?></textarea>
</div>
</div>
<div class="card-footer d-flex justify-content-end">
<input type="submit" class="btn btn-dark mx-1" value="Update">
</div>
</form>
</div>
</div>
<div class='col-md-6'>
<div class="card card-dark">
<div class="card-header">
<h3 class="card-title">Social Links</h3>
</div>
<form action="<?php echo e(route('settings.social.links')); ?>" role="form" method="post"
class="jqueryValidation">
<?php echo csrf_field(); ?>
<div class="card-body">
<div class="checkbox">
<label>
<input type="checkbox" name="facebook_status" value="1"
<?php echo e(old('facebook_status', $facebook_status) ? 'checked' : ''); ?>> Show Facebook url
</label>
</div>
<div class="form-group">
<label for="facebook_url">Facebook Url</label>
<input type="text" class="form-control" id="facebook_url" name="facebook_url"
value="<?php echo e(old('facebook_url', $facebook_url)); ?>" placeholder="Enter facebook url">
</div>
<div class="checkbox">
<label>
<input type="checkbox" name="twitter_status" value="1"
<?php echo e(old('twitter_status', $twitter_status) ? 'checked' : ''); ?>> Show Twitter url
</label>
</div>
<div class="form-group">
<label for="twitter_url">Twitter Url</label>
<input type="text" class="form-control" id="twitter_url" name="twitter_url"
value="<?php echo e(old('twitter_url', $twitter_url)); ?>" placeholder="Enter twitter url">
</div>
<div class="checkbox">
<label>
<input type="checkbox" name="instagram_status" value="1"
<?php echo e(old('instagram_status', $instagram_status) ? 'checked' : ''); ?>> Show Instagram url
</label>
</div>
<div class="form-group">
<label for="instagram_url">Instagram Url</label>
<input type="text" class="form-control" id="instagram_url" name="instagram_url"
value="<?php echo e(old('instagram_url', $instagram_url)); ?>" placeholder="Enter Instagram url">
</div>
<div class="checkbox">
<label>
<input type="checkbox" name="whatsapp_status" value="1"
<?php echo e(old('whatsapp_status', $whatsapp_status) ? 'checked' : ''); ?>> Show whatsapp url
</label>
</div>
<div class="form-group">
<label for="whatsapp_url">whatsapp Url</label>
<input type="text" class="form-control" id="whatsapp_url" name="whatsapp_url"
value="<?php echo e(old('whatsapp_url', $whatsapp_url)); ?>" placeholder="Enter whatsapp url">
</div>
<div class="checkbox">
<label>
<input type="checkbox" name="linkedin_status" value="1"
<?php echo e(old('linkedin_status', $linkedin_status) ? 'checked' : ''); ?>> Show LinkedIn url
</label>
</div>
<div class="form-group">
<label for="linkedin_url">Linked In Url</label>
<input type="text" class="form-control" id="linkedin_url" name="linkedin_url"
value="<?php echo e(old('linkedin_url', $linkedin_url)); ?>" placeholder="Enter linkedIn url">
</div>
</div>
<div class="card-footer d-flex justify-content-end">
<input type="submit" class="btn btn-dark mx-1" value="Update">
</div>
</form>
</div>
</div>
</div><!-- /.row -->
<?php $__env->stopSection(); ?>
<?php echo $__env->make('adminlte::page', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /var/www/html/orbidirectory.com/resources/views/admin/settings.blade.php ENDPATH**/ ?>