Вход Регистрация
Файл: src/storage/framework/views/4a4cce09b54b2f99233b207c795b3f42242a645e.php
Строк: 186
<?php $__env->startSection('breadcrumb'); ?>
<ul class="breadcrumb">
   <li>
      <a href="<?php echo e(route('get.dashboard')); ?>" title="<?php echo e(trans('breadcrumb.dashboard')); ?>">
      <span class="lnr lnr-home"></span> <?php echo e(trans('breadcrumb.dashboard')); ?>

      </a>
   </li>
   <li><?php echo e(trans('breadcrumb.settings')); ?></li>
</ul>
<?php $__env->stopSection(); ?>
<?php $__env
->startSection('content'); ?>
<div class="row">
   <div class="col-sm-12">
        <?php if(Session::get("ErrorMessage")): ?>
    <div class="alert alert-danger" role="alert">
  <span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true"></span>
  <strong><?php echo e(trans('messages.failure_header')); ?></strong>
  <?php echo e(Session::get("ErrorMessage")); ?>

</div>
<?php endif; ?>
    <?php if(Session::get("SuccessMessage")): ?>
    <div class="alert alert-success" role="alert">
  <span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true"></span>
  <strong><?php echo e(trans('messages.success_header')); ?></strong> 
  <?php echo e(Session::get("SuccessMessage")); ?>

</div>
<?php endif; ?>
      <div class="panel panel-flat">
         <div class="panel-heading">
            <h5><?php echo trans('settings.add_panel_title'); ?></strong></h5>
         </div>
         <div class="panel-body">
            <div class="row">
               <div class="col-lg-4">
                  <img src="<?php echo e(asset('/uploads/'.$Settings->Logo)); ?>" alt="" class="img-responsive" />
               </div>
               <div class="col-lg-8">
                  <form action="/file-upload" class="dropzone">
                     <div class="fallback">
                        <input name="file" type="file" multiple />
                     </div>
                  </form>
               </div>
            </div>
            <?php echo e(Form::model($Settings,['class'=>'form-horizontal'])); ?>

            <fieldset class="content-group">
                <div class="form-group">
                    <label class="control-label col-lg-2">
                        <?php echo e(trans('settings.label_currencies')); ?>

                    </label>
                    <div class="col-lg-4">
                        <?php echo e(Form::select('CurrencyID',$Currencies,null,['placeholder'=>'Select Currency...','class'=>'form-control select2'])); ?>

                        <?php if($errors->has('CurrencyID')): ?>
                            <small><?php echo e($errors->first('CurrencyID')); ?></small>
                        <?php endif; ?>
                    </div>
                    <label class="control-label col-lg-2">
                        <?php echo e(trans('settings.label_languages')); ?>

                    </label>
                    <div class="col-lg-4">
                        <?php echo e(Form::select('LanguageID',$Languages,null,['placeholder'=>'Select Language...','class'=>'form-control'])); ?>

                        <?php if($errors->has('LanguageID')): ?>
                            <small><?php echo e($errors->first('LanguageID')); ?></small>
                        <?php endif; ?>
                    </div>
                </div>
                <div class="form-group">
                  <label class="control-label col-lg-2">
                  <?php echo e(trans('settings.label_email')); ?>

                  </label>
                  <div class="col-lg-10">
                        <?php echo e(Form::text('Email',null,['placeholder'=>'example@example.com','class'=>'form-control'])); ?>

                        <?php if($errors->has('Email')): ?>
                            <small><?php echo e($errors->first('Email')); ?></small>
                        <?php endif; ?>
                  </div>
               </div>
                <div class="form-group">
                  <label class="control-label col-lg-2">
                  <?php echo e(trans('settings.label_content')); ?>

                  </label>
                  <div class="col-lg-10">
                     <?php echo e(Form::textarea('DefaultContent',null,['class'=>'form-control'])); ?>

                     <?php if($errors->has('DefaultContent')): ?>
                     <small><?php echo e($errors->first('DefaultContent')); ?></small>
                     <?php endif; ?>
                  </div>
               </div>

                <fieldset class="content-group">
                    <legend><?php echo e(trans('settings.company_details')); ?></legend>
                                    <div class="form-group">
                                        <label class="control-label col-lg-2">
                                            <?php echo e(trans('companies.title')); ?>

                                        </label>
                                        <div class="col-lg-10">
                                            <?php echo e(Form::text('Title',$Company["Title"],['placeholder'=>'Example Company Inc.','class'=>'form-control'])); ?>

                                            <?php if($errors->has('Title')): ?>
                                                <small><?php echo e($errors->first('Title')); ?></small>
                                            <?php endif; ?>
                                        </div>
                                    </div>

                                    <div class="form-group">
                                        <label class="control-label col-lg-2">
                                            <?php echo e(trans('companies.address')); ?>

                                        </label>
                                        <div class="col-lg-5">
                                            <?php echo e(Form::text('Address1',$Company["Address1"],['placeholder'=>'Address Line 1','class'=>'form-control'])); ?>

                                            <?php if($errors->has('Address1')): ?>
                                                <small><?php echo e($errors->first('Address1')); ?></small>
                                            <?php endif; ?>
                                        </div>
                                        <div class="col-lg-5">
                                            <?php echo e(Form::text('Address2',$Company["Address2"],['placeholder'=>'Address Line 2','class'=>'form-control'])); ?>

                                            <?php if($errors->has('Address2')): ?>
                                                <small><?php echo e($errors->first('Address2')); ?></small>
                                            <?php endif; ?>
                                        </div>
                                    </div>
                                    <div class="form-group">
                                        <label class="control-label col-lg-2">
                                            <?php echo e(trans('companies.city')); ?>

                                        </label>
                                        <div class="col-lg-4">
                                            <?php echo e(Form::text('City',$Company["City"],['placeholder'=>'Eg: New York','class'=>'form-control'])); ?>

                                            <?php if($errors->has('City')): ?>
                                                <small><?php echo e($errors->first('City')); ?></small>
                                            <?php endif; ?>
                                        </div>

                                        <label class="control-label col-lg-2">
                                            <?php echo e(trans('companies.country')); ?>

                                        </label>
                                        <div class="col-lg-4">
                                            <?php echo e(Form::select('CountryID',$Countries,$Company["CountryID"],['placeholder'=>'Select Country...','class'=>'form-control select2'])); ?>

                                            <?php if($errors->has('CountryID')): ?>
                                                <small><?php echo e($errors->first('CountryID')); ?></small>
                                            <?php endif; ?>
                                        </div>
                                    </div>
                                    <div class="form-group">
                                        <label class="control-label col-lg-2">
                                            <?php echo e(trans('companies.zipcode')); ?>

                                        </label>
                                        <div class="col-lg-4">
                                            <?php echo e(Form::text('ZipCode',$Company["ZipCode"],['placeholder'=>'Eg: 35530 XY','class'=>'form-control'])); ?>

                                            <?php if($errors->has('ZipCode')): ?>
                                                <small><?php echo e($errors->first('ZipCode')); ?></small>
                                            <?php endif; ?>
                                        </div>

                                        <label class="control-label col-lg-2">
                                            <?php echo e(trans('companies.phone')); ?>

                                        </label>
                                        <div class="col-lg-4">
                                            <?php echo e(Form::text('Phone',$Company["Phone"],['placeholder'=>'Contact Phone','class'=>'form-control'])); ?>

                                            <?php if($errors->has('Phone')): ?>
                                                <small><?php echo e($errors->first('Phone')); ?></small>
                                            <?php endif; ?>
                                        </div>
                                    </div>
                                </fieldset>

                                <div class="text-right">
                                    <button type="submit" class="btn btn-sm btn-primary">
                                        <i class="lnr lnr-cog"></i> 
                                        <?php echo e(trans('settings.update_settings')); ?>

                                    </button>
                                </div>
            <?php echo e(Form::close()); ?>

         </div>
      </div>
   </div>
</div>
<?php $__env->stopSection(); ?>
<?php 
echo $__env->make('layouts.app'array_except(get_defined_vars(), array('__data''__path')))->render(); ?>
Онлайн: 2
Реклама