%PDF- %GIF98; %PNG;
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/public_html/admin1/resources/views/gdpr/ajax/ |
Upload File : |
<div class="row mt-4">
<div class="col-sm-12">
<x-form id="rightToAccess">
@method('put')
<div class="add-client bg-white rounded">
<h4 class="mb-0 p-20 f-21 font-weight-normal text-capitalize border-bottom-grey">@lang('app.menu.profileSettings')</h4>
<div class="p-20">
<div class="row">
<input type="hidden" id="redirect_url" name="redirect_url" value="{{ \Request::fullUrl() }}">
<div class="col-lg-12">
@php
$userImage = $user->hasGravatar($user->email) ? str_replace('?s=200&d=mp', '', $user->image_url) : asset('img/avatar.png');
@endphp
<x-forms.file allowedFileExtensions="png jpg jpeg svg bmp" class="mr-0 mr-lg-2 mr-md-2" :fieldLabel="__('modules.profile.profilePicture')"
:fieldValue="($user->image ? $user->image_url : $userImage)" fieldName="image"
fieldId="profile-image" :popover="__('modules.themeSettings.logoSize')" :popover="__('messages.fileFormat.ImageFile')">
</x-forms.file>
</div>
<div class="col-lg-6">
<x-forms.text class="mr-0 mr-lg-2 mr-md-2" :fieldLabel="__('modules.profile.yourName')"
:fieldPlaceholder="__('placeholders.name')" fieldName="name" fieldId="name"
:fieldValue="$user->name"></x-forms.text>
</div>
<div class="col-lg-6">
<x-forms.text class="mr-0 mr-lg-2 mr-md-2" :fieldLabel="__('modules.profile.yourEmail')"
:fieldPlaceholder="__('placeholders.email')" fieldName="email" fieldId="email"
:fieldValue="$user->email"></x-forms.text>
</div>
<div class="col-lg-6">
<x-forms.password class="mr-0 mr-lg-2 mr-md-2" :fieldLabel="__('modules.profile.yourPassword')"
fieldName="password" fieldId="password" :fieldHelp="__('modules.client.passwordUpdateNote')"
:fieldPlaceholder="__('placeholders.password')"></x-forms.password>
</div>
<div class="col-lg-6">
<x-forms.tel fieldId="mobile" :fieldLabel="__('app.mobile')" fieldName="mobile"
:fieldPlaceholder="__('placeholders.mobile')" :fieldValue="$user->mobile"></x-forms.tel>
</div>
<!-- COMPANY NAME START -->
<div class="col-md-6">
<div class="form-group mb-lg-0 mb-md-0 mb-4">
<x-forms.label fieldId="company_name" :fieldLabel="__('app.company_name')">
</x-forms.label>
<div class="input-group" id="client_company_div">
<input type="text" id="company_name" name="company_name"
class="px-6 position-relative text-dark font-weight-normal form-control height-35 rounded p-0 text-left f-15"
placeholder="" value="{{ $user->clientDetails->company_name }}">
</div>
</div>
</div>
<!-- COMPANY NAME END -->
<div class="col-md-6">
<x-forms.text class="mb-3 mt-3 mt-lg-0 mt-md-0" fieldId="website"
:fieldLabel="__('modules.client.website')" fieldName="website"
:fieldPlaceholder="__('placeholders.website')" :fieldValue="$user->clientDetails->website">
</x-forms.text>
</div>
<div class="col-lg-6">
<x-forms.text class="mr-0 mr-lg-2 mr-md-2" :fieldLabel="__('app.gstNumber')"
:fieldPlaceholder="__('placeholders.invoices.gstNumber')" fieldName="gst_number"
fieldId="gst_number" :fieldValue="$user->clientDetails->gst_number" />
</div>
<div class="col-lg-4">
<div class="form-group my-3">
<label class="f-14 text-dark-grey mb-12 w-100" for="usr">@lang('modules.emailSettings.emailNotifications')</label>
<div class="d-flex">
<x-forms.radio fieldId="login-yes" :fieldLabel="__('app.enable')" fieldName="email_notifications"
fieldValue="1" checked="true" :checked="($user->email_notifications === 1) ? 'checked' : ''">
</x-forms.radio>
<x-forms.radio fieldId="login-no" :fieldLabel="__('app.disable')" fieldValue="0"
fieldName="email_notifications" :checked="($user->email_notifications === 0) ? 'checked' : ''">
</x-forms.radio>
</div>
</div>
</div>
<div class="col-md-6">
<div class="form-group my-3">
<x-forms.textarea class="mr-0 mr-lg-2 mr-md-2"
:fieldLabel="__('modules.gdpr.publicPageConsentInformationBlock')" fieldName="consent_block"
fieldId="consent_block" :fieldPlaceholder="__('placeholders.sampleText')"
:fieldValue="$gdprSetting->consent_block">
</x-forms.textarea>
</div>
</div>
<div class="col-md-6">
<div class="form-group my-3">
<x-forms.textarea class="mr-0 mr-lg-2 mr-md-2"
:fieldLabel="__('modules.gdpr.publicPageConsentInformationBlock')" fieldName="consent_block"
fieldId="consent_block" :fieldPlaceholder="__('placeholders.sampleText')"
:fieldValue="$gdprSetting->consent_block">
</x-forms.textarea>
</div>
</div>
</div>
</div>
<!-- Buttons Start -->
<x-form-actions>
<x-forms.button-primary id="save-right-to-access-data" icon="check">@lang('app.save')</x-forms.button-primary>
</x-form-actions>
<!-- Buttons End -->
</div>
</x-form>
</div>
</div>
<script>
$(body).on('click', '#save-right-to-access-data', function() {
var url = "{{ route('profile.update', [ser()->id]) }}";
$.easyAjax({
url: url,
container: '#rightToAccess',
type: "POST",
disableButton: true,
buttonSelector: "#save-right-to-access-data",
data: $('#rightToAccess').serialize(),
})
})
</script>