One Hat Cyber Team
Your IP:
216.73.216.102
Server IP:
198.54.114.155
Server:
Linux server71.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
Server Software:
LiteSpeed
PHP Version:
5.6.40
Create File
|
Create Folder
Execute
Dir :
~
/
home
/
fluxyjvi
/
www
/
project
/
resources
/
views
/
admin
/
View File Name :
profile.blade.php
@extends('layouts.admin') @section('content') <div class="card"> <div class="d-sm-flex align-items-center justify-content-between py-3"> <h5 class=" mb-0 text-gray-800 pl-3">{{ __('Edit Profile') }}</h5> <ol class="breadcrumb m-0 py-0"> <li class="breadcrumb-item"><a href="{{ route('admin.dashboard') }}">{{ __('Dashboard') }}</a></li> <li class="breadcrumb-item"><a href="{{ route('admin.profile') }}">{{ __('Edit Profile') }}</a></li> </ol> </div> </div> <div class="card mb-4"> <div class="card-header py-3 d-flex flex-row align-items-center justify-content-between"> <h6 class="m-0 font-weight-bold text-primary">{{ __('Edit Profile Form') }}</h6> </div> <div class="card-body"> <div class="gocover" style="background: url({{asset('assets/images/'.$gs->admin_loader)}}) no-repeat scroll center center rgba(45, 45, 45, 0.5);"></div> <form class="geniusform" action="{{ route('admin.profile.update') }}" method="POST" enctype="multipart/form-data"> @include('includes.admin.form-both') {{ csrf_field() }} <div class="form-group"> <label>{{ __('Profile Picture') }} <small class="small-font">({{ __('Preferred Size 600 X 600') }})</small></label> <div class="wrapper-image-preview"> <div class="box"> <div class="back-preview-image" style="background-image: url({{ $data->photo ? asset('assets/images/'.$data->photo):asset('assets/images/placeholder.jpg') }});"></div> <div class="upload-options"> <label class="img-upload-label" for="img-upload"> <i class="fas fa-camera"></i> {{ __('Upload Picture') }} </label> <input id="img-upload" type="file" class="image-upload" name="photo" accept="image/*"> </div> </div> </div> </div> <div class="form-group"> <label for="inp-name">{{ __('Name') }}</label> <input type="text" class="form-control" id="inp-name" name="name" placeholder="{{ __('Enter Name') }}" value="{{ $data->name }}" required> </div> <div class="form-group"> <label for="inp-eml">{{ __('Email Address') }}</label> <input type="email" class="form-control" id="inp-eml" name="email" placeholder="{{ __('Enter Email Address') }}" value="{{ $data->email }}" required> </div> <div class="form-group"> <label for="inp-phn">{{ __('Phone') }}</label> <input type="text" class="form-control" id="inp-phn" name="phone" placeholder="{{ __('Phone Number') }}" value="{{ $data->phone }}" required> </div> <button type="submit" id="submit-btn" class="btn btn-primary w-100">{{ __('Submit') }}</button> </form> </div> </div> @endsection