Файловый менеджер - Редактировать - /home/kckglobal/public_html/portal/resources/views/clients/contacts/create.blade.php
Назад
<link rel="stylesheet" href="{{ asset('vendor/css/dropzone.min.css') }}"> <div class="row"> <div class="col-sm-12"> <x-form id="save-client-data-form"> <div class="add-client bg-white rounded"> <h4 class="mb-0 p-20 f-21 font-weight-normal border-bottom-grey"> @lang('modules.employees.accountDetails')</h4> <input type="hidden" name="is_client_contact" value="{{ $clientId }}"> <div class="row p-20"> <div class="col-lg-9"> <div class="row"> <div class="col-md-4"> <x-forms.text fieldId="title" :fieldLabel="__('app.title')" fieldName="title" :fieldPlaceholder="__('placeholders.title')"> </x-forms.text> </div> <div class="col-md-4"> <x-forms.select fieldId="salutation" fieldName="salutation" :fieldLabel="__('modules.client.salutation')"> <option value="">--</option> @foreach ($salutations as $salutation) <option value="{{ $salutation->value }}" @selected(isset($lead) && $salutation == $lead->salutation)>{{ $salutation->label() }}</option> @endforeach </x-forms.select> </div> <div class="col-md-4"> <x-forms.text fieldId="name" :fieldLabel="__('modules.contacts.contactName')" fieldName="name" fieldRequired="true" :fieldPlaceholder="__('placeholders.name')" :fieldValue="$lead->client_name ?? ''"></x-forms.text> </div> <div class="col-md-4"> <x-forms.email fieldId="email" :fieldLabel="__('app.email')" fieldName="email" :popover="__('modules.client.emailNote')" :fieldPlaceholder="__('placeholders.email')" :fieldValue="$lead->client_email ?? ''"> </x-forms.email> </div> <div class="col-md-4"> <x-forms.label class="mt-3" fieldId="password" :fieldLabel="__('app.password')" :popover="__('messages.requiredForLogin')"> </x-forms.label> <x-forms.input-group> <input type="password" name="password" id="password" class="form-control height-35 f-14"> <x-slot name="preappend"> <button type="button" data-toggle="tooltip" data-original-title="@lang('app.viewPassword')" class="btn btn-outline-secondary border-grey height-35 toggle-password"><i class="fa fa-eye"></i></button> </x-slot> <x-slot name="append"> <button id="random_password" type="button" data-toggle="tooltip" data-original-title="@lang('modules.client.generateRandomPassword')" class="btn btn-outline-secondary border-grey height-35"><i class="fa fa-random"></i></button> </x-slot> </x-forms.input-group> <small class="form-text text-muted">@lang('placeholders.password')</small> </div> <div class="col-md-4"> <x-forms.select fieldId="country" :fieldLabel="__('app.country')" fieldName="country" search="true"> @foreach ($countries as $item) <option data-tokens="{{ $item->iso3 }}" data-phonecode = "{{$item->phonecode}}" data-iso="{{ $item->iso }}" data-content="<span class='flag-icon flag-icon-{{ strtolower($item->iso) }} flag-icon-squared'></span> {{ $item->nicename }}" @selected(isset($lead) && $item->nicename == $lead->country) value="{{ $item->id }}">{{ $item->nicename }}</option> @endforeach </x-forms.select> </div> <div class="col-md-4"> <x-forms.label class="my-3" fieldId="mobile" :fieldLabel="__('app.mobile')"></x-forms.label> <x-forms.input-group style="margin-top:-4px"> <x-forms.select fieldId="country_phonecode" fieldName="country_phonecode" search="true"> @foreach ($countries as $item) <option data-tokens="{{ $item->name }}" data-country-iso="{{ $item->iso }}" data-content="{{$item->flagSpanCountryCode()}}" @selected(isset($lead) && $item->nicename == $lead->country) value="{{ $item->phonecode }}">{{ $item->phonecode }} </option> @endforeach </x-forms.select> <input type="tel" class="form-control height-35 f-14" placeholder="@lang('placeholders.mobile')" name="mobile" id="mobile" value="{{$lead->mobile ?? ''}}"> </x-forms.input-group> </div> </div> </div> <div class="col-lg-3"> <x-forms.file allowedFileExtensions="png jpg jpeg svg bmp" class="mr-0 mr-lg-2 mr-md-2 cropper" :fieldLabel="__('modules.profile.profilePicture')" fieldName="image" fieldId="image" fieldHeight="119" :popover="__('messages.fileFormat.ImageFile')" /> </div> <div class="col-md-6"> <x-forms.textarea class="mr-0 mr-lg-2 mr-md-2" :fieldLabel="__('modules.accountSettings.companyAddress')" fieldName="address" fieldId="address" :fieldPlaceholder="__('placeholders.address')" > </x-forms.textarea> </div> <div class="col-md-3"> <x-forms.select fieldId="gender" :fieldLabel="__('modules.employees.gender')" fieldName="gender"> <option value="male">@lang('app.male')</option> <option value="female">@lang('app.female')</option> <option value="others">@lang('app.others')</option> </x-forms.select> </div> <div class="col-md-3"> <x-forms.select fieldId="locale" :fieldLabel="__('modules.accountSettings.changeLanguage')" fieldName="locale" search="true"> @foreach ($languages as $language) <option {{ user()->locale == $language->language_code ? 'selected' : '' }} data-content="<span class='flag-icon flag-icon-{{ ($language->flag_code == 'en') ? 'gb' : $language->flag_code }} flag-icon-squared'></span> {{ $language->language_name }}" value="{{ $language->language_code }}">{{ $language->language_name }}</option> @endforeach </x-forms.select> </div> <div class="col-md-3 form-group"> <label class="f-14 text-dark-grey mb-12 w-100 mt-3" for="usr">@lang('modules.client.clientCanLogin')</label> <div class="d-flex"> <x-forms.radio fieldId="login-yes" :fieldLabel="__('app.yes')" fieldName="login" fieldValue="enable"> </x-forms.radio> <x-forms.radio fieldId="login-no" :fieldLabel="__('app.no')" fieldValue="disable" fieldName="login" checked="true"></x-forms.radio> </div> </div> </div> <x-form-actions> <x-forms.button-primary id="save-client-form" class="mr-3" icon="check">@lang('app.save') </x-forms.button-primary> <x-forms.button-cancel :link="route('clients.show', $clientId) . '?tab=contacts'" class="border-0"> @lang('app.cancel') </x-forms.button-cancel> </x-form-actions> </div> </x-form> </div> </div> @if (function_exists('sms_setting') && sms_setting()->telegram_status) <script src="{{ asset('vendor/jquery/clipboard.min.js') }}"></script> @endif <script> $(document).ready(function() { $('.custom-date-picker').each(function(ind, el) { datepicker(el, { position: 'bl', ...datepickerConfig }); }); $('#country').change(function(){ var phonecode = $(this).find(':selected').data('phonecode'); var iso = $(this).find(':selected').data('iso'); $('#country_phonecode').find('option').each(function() { if ($(this).data('country-iso') === iso) { $(this).val(phonecode); $(this).prop('selected', true); // Set the option as selected } }); $('.select-picker').selectpicker('refresh'); }); $('#save-client-form').click(function() { const url = "{{ route('clients.store') }}"; var data = $('#save-client-data-form').serialize(); saveClient(data, url, "#save-client-form"); }); function saveClient(data, url, buttonSelector) { $.easyAjax({ url: url, container: '#save-client-data-form', type: "POST", disableButton: true, blockUI: true, buttonSelector: buttonSelector, file: true, data: data, success: function(response) { if (response.status == 'success') { if ($(MODAL_XL).hasClass('show')) { $(MODAL_XL).modal('hide'); window.location.reload(); } else if(typeof response.redirectUrl !== 'undefined'){ window.location.href = response.redirectUrl; } else if(response.add_more == true) { var right_modal_content = $.trim($(RIGHT_MODAL_CONTENT).html()); if(right_modal_content.length) { $(RIGHT_MODAL_CONTENT).html(response.html.html); $('#add_more').val(false); } else { $('.content-wrapper').html(response.html.html); init('.content-wrapper'); $('#add_more').val(false); } } if (typeof showTable !== 'undefined' && typeof showTable === 'function') { showTable(); } } } }); } $('#random_password').click(function() { const randPassword = Math.random().toString(36).substr(2, 8); $('#password').val(randPassword); }); $('#addClientCategory').click(function() { const url = "{{ route('clientCategory.create') }}"; $(MODAL_LG + ' ' + MODAL_HEADING).html('...'); $.ajaxModal(MODAL_LG, url); }) $('#addClientSubCategory').click(function() { const url = "{{ route('clientSubCategory.create') }}"; $(MODAL_LG + ' ' + MODAL_HEADING).html('...'); $.ajaxModal(MODAL_LG, url); }); init(RIGHT_MODAL); }); @if (function_exists('sms_setting') && sms_setting()->telegram_status) var clipboard = new ClipboardJS('.btn-copy'); clipboard.on('success', function(e) { Swal.fire({ icon: 'success', text: '@lang("app.urlCopied")', toast: true, position: 'top-end', timer: 3000, timerProgressBar: true, showConfirmButton: false, customClass: { confirmButton: 'btn btn-primary', }, showClass: { popup: 'swal2-noanimation', backdrop: 'swal2-noanimation' }, }) }); @endif </script>
| ver. 1.4 |
Github
|
.
| PHP 8.2.28 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка