Sizing style issue fixed

This commit is contained in:
Enes Sacid Büker 2023-03-24 09:53:54 +03:00 committed by GitHub
parent 659c7d75d6
commit 8d123b76e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,62 +11,63 @@
<x-form.group.text name="name" label="{{ trans($textName) }}" form-group-class="{{ $classNameFromGroupClass }}" /> <x-form.group.text name="name" label="{{ trans($textName) }}" form-group-class="{{ $classNameFromGroupClass }}" />
@endif @endif
<div class="sm:col-span-3 grid gap-x-8 gap-y-6"> <div class="sm:col-span-3">
@if (! $hideEmail) <div class="relative sm:col-span-6 grid gap-x-8 gap-y-6">
<x-form.group.text name="email" label="{{ trans($textEmail) }}" not-required /> @if (! $hideEmail)
@endif <x-form.group.text name="email" label="{{ trans($textEmail) }}" form-group-class="sm:col-span-6" not-required />
@endif
@if (! $hidePhone) @if (! $hidePhone)
<x-form.group.text name="phone" label="{{ trans($textPhone) }}" not-required /> <x-form.group.text name="phone" label="{{ trans($textPhone) }}" form-group-class="sm:col-span-6" not-required />
@endif @endif
@if (! $hideWebsite) @if (! $hideWebsite)
<x-form.group.text name="website" label="{{ trans($textWebsite) }}" not-required /> <x-form.group.text name="website" label="{{ trans($textWebsite) }}" form-group-class="sm:col-span-6" not-required />
@endif @endif
@if (! $hideReference) @if (! $hideReference)
<x-form.group.text name="reference" label="{{ trans($textReference) }}" not-required /> <x-form.group.text name="reference" label="{{ trans($textReference) }}" form-group-class="sm:col-span-6" not-required />
@endif @endif
</div>
</div> </div>
<div class="sm:col-span-3"> <div class="sm:col-span-3">
@if (! $hideCanLogin) <div class="relative sm:col-span-6 grid gap-x-8 gap-y-6">
<div class="mt-9"> @if (! $hideCanLogin)
@if (empty($contact)) <div class="sm:col-span-6 mt-9 mb-2">
<x-tooltip id="tooltip-client_portal-text" placement="bottom" message="{{ trans('customers.can_login_description') }}"> @if (empty($contact))
<x-form.group.checkbox
name="create_user"
:options="['1' => trans('customers.can_login')]"
@input="onCanLogin($event)"
checkbox-class="sm:col-span-6"
/>
</x-tooltip>
@else
@if ($contact->user_id)
<x-form.group.checkbox
name="create_user"
:options="['1' => trans('customers.user_created')]"
checkbox-class="sm:col-span-6"
checked
disabled
/>
@else
<x-tooltip id="tooltip-client_portal-text" placement="bottom" message="{{ trans('customers.can_login_description') }}"> <x-tooltip id="tooltip-client_portal-text" placement="bottom" message="{{ trans('customers.can_login_description') }}">
<x-form.group.checkbox <x-form.group.checkbox
name="create_user" name="create_user"
:options="['1' => trans('customers.can_login')]" :options="['1' => trans('customers.can_login')]"
checkbox-class="sm:col-span-6"
@input="onCanLogin($event)" @input="onCanLogin($event)"
/> />
</x-tooltip> </x-tooltip>
@else
@if ($contact->user_id)
<x-form.group.checkbox
name="create_user"
:options="['1' => trans('customers.user_created')]"
checked
disabled
/>
@else
<x-tooltip id="tooltip-client_portal-text" placement="bottom" message="{{ trans('customers.can_login_description') }}">
<x-form.group.checkbox
name="create_user"
:options="['1' => trans('customers.can_login')]"
@input="onCanLogin($event)"
/>
</x-tooltip>
@endif
@endif @endif
@endif </div>
</div> @endif
@endif
@if (! $hideLogo) @if (! $hideLogo)
<x-form.group.file name="logo" label="{{ trans_choice('general.pictures', 1) }}" :value="! empty($contact) ? $contact->logo : false" not-required /> <x-form.group.file name="logo" label="{{ trans_choice('general.pictures', 1) }}" :value="! empty($contact) ? $contact->logo : false" form-group-class="sm:col-span-6" not-required />
@endif @endif
</div>
</div> </div>
</x-slot> </x-slot>
</x-form.section> </x-form.section>