HEX
Server: Apache/2.4.41 (Amazon) OpenSSL/1.0.2k-fips PHP/5.6.40
System: Linux ip-172-31-40-18 4.14.146-93.123.amzn1.x86_64 #1 SMP Tue Sep 24 00:45:23 UTC 2019 x86_64
User: apache (48)
PHP: 5.6.40
Disabled: NONE
Upload Files
File: /var/www/html/punjabcabs/storage/framework/views/e51fba3892edf470d6b663b8b9b7e1b22148c532.php
<?php $__env->startSection('title', 'Profile '); ?>

<?php $__env->startSection('content'); ?>

<div class="col-md-9">
    <div class="dash-content">
        <div class="row no-margin">
            <div class="col-md-12">
                <h4 class="page-title"><?php echo app('translator')->get('user.profile.general_information'); ?></h4>
            </div>
        </div>
            <?php echo $__env->make('common.notify', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
        <div class="row no-margin">
            <form>
                <div class="col-md-6 pro-form">
                    <h5 class="col-md-6 no-padding"><strong><?php echo app('translator')->get('user.profile.first_name'); ?></strong></h5>
                    <p class="col-md-6 no-padding"><?php echo e(Auth::user()->first_name); ?></p>                       
                </div>
                <div class="col-md-6 pro-form">
                    <h5 class="col-md-6 no-padding"><strong><?php echo app('translator')->get('user.profile.last_name'); ?></strong></h5>
                    <p class="col-md-6 no-padding"><?php echo e(Auth::user()->last_name); ?></p>                       
                </div>
                <div class="col-md-6 pro-form">
                    <h5 class="col-md-6 no-padding"><strong><?php echo app('translator')->get('user.profile.email'); ?></strong></h5>
                    <p class="col-md-6 no-padding"><?php echo e(Auth::user()->email); ?></p>
                </div>

                <div class="col-md-6 pro-form">
                    <h5 class="col-md-6 no-padding"><strong><?php echo app('translator')->get('user.profile.mobile'); ?></strong></h5>
                    <p class="col-md-6 no-padding"><?php echo e(Auth::user()->mobile); ?></p>
                </div>

                <div class="col-md-6 pro-form">
                    <h5 class="col-md-6 no-padding"><strong><?php echo app('translator')->get('user.profile.wallet_balance'); ?></strong></h5>
                    <p class="col-md-6 no-padding"><?php echo e(currency(Auth::user()->wallet_balance)); ?></p>
                </div>

                <div class="col-md-6 pro-form">
                    <a class="form-sub-btn" href="<?php echo e(url('edit/profile')); ?>"><?php echo app('translator')->get('user.profile.edit'); ?></a>
                </div>

            </form>
        </div>

    </div>
</div>

<?php $__env->stopSection(); ?>
<?php echo $__env->make('user.layout.base', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>