WordPress

Coming Soon

revealability

File "e141a3ed0af38fe46482a71f1895a27d18e0b25d.php"

Full Path: /home/karnava/public_html/center.karnavati.in/storage/framework/views/e141a3ed0af38fe46482a71f1895a27d18e0b25d.php
File size: 3.42 KB
MIME-type: text/html
Charset: utf-8

 	
<?php $__env->startSection('title','Edit Profile'); ?>
<?php $__env->startSection('main_container'); ?>
      <!-- partial -->
      <div class="main-panel">        
        <div class="content-wrapper">
          <div class="page-header">
            <h3 class="page-title">
            Profile Setting
            </h3>
            <nav aria-label="breadcrumb">
                <ol class="breadcrumb">
                <li class="breadcrumb-item"><a href="#">Home</a></li>
                <li class="breadcrumb-item active" aria-current="page">Setting</li>
                </ol>
            </nav>
          </div>
          <div class="row">
            <div class="col-md-6 grid-margin stretch-card">
              <div class="card">
                <div class="card-body">
                  <h4 class="card-title"></h4>
                  <p class="card-description">
                   
                  </p>
                  <form class="forms-sample" action="<?php echo e(route('profile.perform', $current_user->id)); ?>" method="post" enctype="multipart/form-data">
                    <?php echo csrf_field(); ?>
                    
                    <div class="form-group">
                      <label for="exampleInputUsername1">Name</label>
                      <input type="text" value="<?php echo $current_user->name?>" name="name" class="form-control" >
                        <?php if($errors->has('name')): ?>
                            <span class="text-danger"><?php echo e($errors->first('name')); ?></span>
                        <?php endif; ?>
                    </div>
                    <div class="form-group">
                      <label for="exampleInputUsername1">Username</label>
                      <input id="phone" type="tel" value="<?php echo $current_user->username ?>" name="username" class="form-control" >
                      <?php if($errors->has('username')): ?>
                            <span class="text-danger"><?php echo e($errors->first('username')); ?></span>
                        <?php endif; ?>
                    </div>
                    <div class="form-group">
                      <label for="exampleInputUsername1">Email</label>
                      <input id="last_name" type="text" value="<?php echo $current_user->email?>" name="email" class="form-control" >
                        <?php if($errors->has('email')): ?>
                            <span class="text-danger"><?php echo e($errors->first('email')); ?></span>
                        <?php endif; ?>
                    </div>
                    
                    <div class="form-group">
                      <label for="exampleInputEmail1">Profile Img</label>
                      <input type="file" class="form-control" name="profile_img" >
                    </div>
                    
                    <button type="submit" class="btn btn-primary mr-2">Submit</button>
                   
                  </form>
                </div>
              </div>
            </div>
            
            
          </div>
        </div>
        <!-- content-wrapper ends -->
        <?php $__env->stopSection(); ?>
<?php echo $__env->make('Admin.Layout.main_layout', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/iimtstudiesco/public_html/center/resources/views/Admin/admin_edit_profile.blade.php ENDPATH**/ ?>