41 lines
1.7 KiB
PHP
Raw Normal View History

2020-12-24 01:28:38 +03:00
<div class="row">
<div class="col-sm-6 col-md-6 col-lg-6 col-xl-6">
@if (!$hideContact)
<div class="row">
<x-select-contact-card
type="{{ $contactType }}"
:contact="$contact"
:contacts="$contacts"
:search_route="$contactSearchRoute"
:create_route="$contactCreateRoute"
2020-12-29 11:26:06 +03:00
text-add-contact="{{ $textAddContact }}"
text-create-new-contact="{{ $textCreateNewContact }}"
text-edit-contact="{{ $textEditContact }}"
text-contact-info="{{ $textContactInfo }}"
text-choose-different-contact="{{ $textChooseDifferentContact }}"
/>
2020-12-24 01:28:38 +03:00
</div>
@endif
</div>
<div class="col-sm-6 col-md-6 col-lg-6 col-xl-6">
<div class="row">
@if (!$hideIssuedAt)
{{ Form::dateGroup('issued_at', trans($textIssuedAt), 'calendar', ['id' => 'issued_at', 'class' => 'form-control datepicker', 'required' => 'required', 'date-format' => 'Y-m-d', 'autocomplete' => 'off'], $issuedAt) }}
2020-12-24 01:28:38 +03:00
@endif
@if (!$hideDocumentNumber)
{{ Form::textGroup('document_number', trans($textDocumentNumber), 'file', ['required' => 'required'], $documentNumber) }}
2020-12-24 01:28:38 +03:00
@endif
@if (!$hideDueAt)
{{ Form::dateGroup('due_at', trans($textDueAt), 'calendar', ['id' => 'due_at', 'class' => 'form-control datepicker', 'required' => 'required', 'date-format' => 'Y-m-d', 'autocomplete' => 'off'], $dueAt) }}
2020-12-24 01:28:38 +03:00
@endif
@if (!$hideOrderNumber)
{{ Form::textGroup('order_number', trans($textOrderNumber), 'shopping-cart', [], $orderNumber) }}
2020-12-24 01:28:38 +03:00
@endif
</div>
</div>
</div>