102 lines
		
	
	
		
			6.7 KiB
		
	
	
	
		
			PHP
		
	
	
			
		
		
	
	
			102 lines
		
	
	
		
			6.7 KiB
		
	
	
	
		
			PHP
		
	
	
| @extends('layout.layout')
 | |
| @php
 | |
|     $title='Add User';
 | |
|     $subTitle = 'Add User';
 | |
|     $script = '<script>
 | |
|                     // ================== Image Upload Js Start ===========================
 | |
|                     function readURL(input) {
 | |
|                         if (input.files && input.files[0]) {
 | |
|                             var reader = new FileReader();
 | |
|                             reader.onload = function(e) {
 | |
|                                 $("#imagePreview").css("background-image", "url(" + e.target.result + ")");
 | |
|                                 $("#imagePreview").hide();
 | |
|                                 $("#imagePreview").fadeIn(650);
 | |
|                             }
 | |
|                             reader.readAsDataURL(input.files[0]);
 | |
|                         }
 | |
|                     }
 | |
|                     $("#imageUpload").change(function() {
 | |
|                         readURL(this);
 | |
|                     });
 | |
|                     // ================== Image Upload Js End ===========================
 | |
|              </script>';
 | |
| @endphp
 | |
| 
 | |
| @section('content')
 | |
| 
 | |
|             <div class="card h-100 p-0 radius-12">
 | |
|                 <div class="card-body p-24">
 | |
|                     <div class="row justify-content-center">
 | |
|                         <div class="col-xxl-6 col-xl-8 col-lg-10">
 | |
|                             <div class="card border">
 | |
|                                 <div class="card-body">
 | |
|                                     <h6 class="text-md text-primary-light mb-16">Profile Image</h6>
 | |
| 
 | |
|                                     <!-- Upload Image Start -->
 | |
|                                     <div class="mb-24 mt-16">
 | |
|                                         <div class="avatar-upload">
 | |
|                                             <div class="avatar-edit position-absolute bottom-0 end-0 me-24 mt-16 z-1 cursor-pointer">
 | |
|                                                 <input type='file' id="imageUpload" accept=".png, .jpg, .jpeg" hidden>
 | |
|                                                 <label for="imageUpload" class="w-32-px h-32-px d-flex justify-content-center align-items-center bg-primary-50 text-primary-600 border border-primary-600 bg-hover-primary-100 text-lg rounded-circle">
 | |
|                                                     <iconify-icon icon="solar:camera-outline" class="icon"></iconify-icon>
 | |
|                                                 </label>
 | |
|                                             </div>
 | |
|                                             <div class="avatar-preview">
 | |
|                                                 <div id="imagePreview"> </div>
 | |
|                                             </div>
 | |
|                                         </div>
 | |
|                                     </div>
 | |
|                                     <!-- Upload Image End -->
 | |
| 
 | |
|                                     <form action="#">
 | |
|                                         <div class="mb-20">
 | |
|                                             <label for="name" class="form-label fw-semibold text-primary-light text-sm mb-8">Full Name <span class="text-danger-600">*</span></label>
 | |
|                                             <input type="text" class="form-control radius-8" id="name" placeholder="Enter Full Name">
 | |
|                                         </div>
 | |
|                                         <div class="mb-20">
 | |
|                                             <label for="email" class="form-label fw-semibold text-primary-light text-sm mb-8">Email <span class="text-danger-600">*</span></label>
 | |
|                                             <input type="email" class="form-control radius-8" id="email" placeholder="Enter email address">
 | |
|                                         </div>
 | |
|                                         <div class="mb-20">
 | |
|                                             <label for="number" class="form-label fw-semibold text-primary-light text-sm mb-8">Phone</label>
 | |
|                                             <input type="email" class="form-control radius-8" id="number" placeholder="Enter phone number">
 | |
|                                         </div>
 | |
|                                         <div class="mb-20">
 | |
|                                             <label for="depart" class="form-label fw-semibold text-primary-light text-sm mb-8">Department <span class="text-danger-600">*</span> </label>
 | |
|                                             <select class="form-control radius-8 form-select" id="depart">
 | |
|                                                 <option>Enter Event Title </option>
 | |
|                                                 <option>Enter Event Title One </option>
 | |
|                                                 <option>Enter Event Title Two</option>
 | |
|                                             </select>
 | |
|                                         </div>
 | |
|                                         <div class="mb-20">
 | |
|                                             <label for="desig" class="form-label fw-semibold text-primary-light text-sm mb-8">Designation <span class="text-danger-600">*</span> </label>
 | |
|                                             <select class="form-control radius-8 form-select" id="desig">
 | |
|                                                 <option>Enter Designation Title </option>
 | |
|                                                 <option>Enter Designation Title One </option>
 | |
|                                                 <option>Enter Designation Title Two</option>
 | |
|                                             </select>
 | |
|                                         </div>
 | |
|                                         <div class="mb-20">
 | |
|                                             <label for="desc" class="form-label fw-semibold text-primary-light text-sm mb-8">Description</label>
 | |
|                                             <textarea name="#0" class="form-control radius-8" id="desc" placeholder="Write description..."></textarea>
 | |
|                                         </div>
 | |
|                                         <div class="d-flex align-items-center justify-content-center gap-3">
 | |
|                                             <button type="button" class="border border-danger-600 bg-hover-danger-200 text-danger-600 text-md px-56 py-11 radius-8">
 | |
|                                                 Cancel
 | |
|                                             </button>
 | |
|                                             <button type="submit" class="btn btn-primary border border-primary-600 text-md px-56 py-12 radius-8">
 | |
|                                                 Save
 | |
|                                             </button>
 | |
|                                         </div>
 | |
|                                     </form>
 | |
|                                 </div>
 | |
|                             </div>
 | |
|                         </div>
 | |
|                     </div>
 | |
|                 </div>
 | |
|             </div>
 | |
| 
 | |
| @endsection
 | |
| 
 |