Current File : /home/tradevaly/www/storage/framework/views/51c3d087c93ca0a487bf571bf17a825191a88527.php
<?php $__env->startPush('style'); ?>
    
<?php $__env->stopPush(); ?>

<?php $__env->startSection('content'); ?>
<div class="container-fluid">
  <div class="row">
    <div class="col-md-8">
      <div class="card">
        <div class="card-header card-header-icon card-header-info">
          <h4 class="card-title">Edit Profile -
            <small class="category">Complete your profile</small>
          </h4>
        </div>
        <div class="card-body">
          <form action="<?php echo e(route('user.profile')); ?>" method="post" enctype="multipart/form-data">
            <?php echo csrf_field(); ?>
            <div class="row">
              <div class="col-md-8 mb-4">
                <div class="form-group">
                  <label class="bmd-label-floating">Email</label>
                  <input type="text" class="form-control" name="email" value="<?php echo e(Auth::user()->email); ?>">
                </div>
              </div>
              <div class="col-md-8 mb-4">
                <div class="form-group">
                <label class="bmd-label-floating">Name</label>
                  <input type="text" name="name" class="form-control" value="<?php echo e(Auth::user()->name); ?>">
                </div>
              </div>
               <div class="col-md-12">
                  <div class="form-group">
                    <label class="bmd-label-floating">Profile Picture</label>
                    <br/>
                    <?php if(Auth::guard('web')->user()->image != 'image.jpg'): ?> <img style="width:50px; border-radius:10%;" src="<?php echo e(asset('storage/images/user/avatar/'.Auth::guard('web')->user()->image)); ?>"> <?php endif; ?>
                    <input type="file" class="form-control" name="image">
                  </div>
                </div>
              </div>
            </div>
            <button type="submit" class="btn btn-success pull-right">Update Profile</button>
            <div class="clearfix"></div>
          </form>
        </div>
      </div>
    </div>
  </div>
</div>
<?php $__env->stopSection(); ?>

<?php $__env->startPush('script'); ?>
   
<?php $__env->stopPush(); ?>
<?php echo $__env->make('user.ayaan.master', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/tradevaly/public_html/resources/views/user/pages/profile.blade.php ENDPATH**/ ?>