default_language) == 'Arabic') dir="rtl" @endif>
{!! Form::open(['id' => 'addAppointmentForm']) !!}
{{ Form::hidden('from_time', null, ['id' => 'timeSlot']) }}
{{ Form::hidden('to_time', null, ['id' => 'toTime']) }}
{{ Form::hidden('date', null, ['id' => 'Date']) }}
{{ Form::hidden('vcard_id', $vcard->id, ['id' => 'vCardId']) }}
{{ Form::label('name', __('messages.common.name') . ' :', ['class' => 'form-label required']) }}
{{ Form::text('name', null, ['class' => 'form-control custom-placeholder', 'required', 'placeholder' => __('messages.form.enter_name'), 'id' => 'paypalIntUserName']) }}
{{ Form::label('email', __('messages.common.email') . ' :', ['class' => 'form-label required ']) }}
{{ Form::text('email', null, ['class' => 'form-control custom-placeholder', 'required', 'placeholder' => __('messages.form.enter_email'), 'id' => 'paypalIntUserEmail']) }}
{{ Form::label('phone', __('messages.common.phone') . ' :', ['class' => 'form-label']) }}
{{ Form::text('phone', null, ['class' => 'form-control custom-placeholder', 'required', 'placeholder' => __('messages.form.enter_phone'), 'id' => 'paypalIntUserPhone', 'onkeyup' => 'if (/\D/g.test(this.value)) this.value = this.value.replace(/\D/g, "")']) }}
@if (isset($appointmentDetail->is_paid) &&
$appointmentDetail->is_paid == 1 &&
(getUserSettingValue('stripe_enable', $vcard->user->id) ||
getUserSettingValue('flutterwave_enable', $vcard->user->id) ||
getUserSettingValue('paytack_enable', $vcard->user->id) ||
getUserSettingValue('phonepe_enable', $vcard->user->id) ||
getUserSettingValue('manually_payment', $vcard->user->id) ||
getUserSettingValue('mercado_pago_enable', $vcard->user->id) ||
getUserSettingValue('paypal_enable', $vcard->user->id)))
@php
$translatedPaymentTypes1 = collect(\App\Models\Appointment::PAYMENT_METHOD)->map(function (
$value,
) {
return trans('messages.' . $value);
});
$translatedPaymentTypes2 = collect($paymentMethod)->map(function ($value) {
return trans('messages.' . $value);
});
@endphp
{{ Form::label('payment_method', __('messages.common.payment_methods') . ' :', ['class' => 'form-label required']) }}
{{ Form::select('payment_method', $appointmentDetail->is_paid == 0 ? $translatedPaymentTypes1 : $translatedPaymentTypes2, null, ['class' => 'form-control custom-placeholder form-select form-select-solid select2Selector', 'data-control' => 'select2', 'required', 'id' => 'appointmentPaymentMethod', 'placeholder' => __('messages.common.payment_methods')]) }}
{{ Form::hidden('manual_payment_guide', isset($userSetting['manual_payment_guide']) ? $userSetting['manual_payment_guide'] : '', ['id' => 'manualPaymentGuideData']) }}
{!! isset($userSetting['manual_payment_guide']) ? $userSetting['manual_payment_guide'] : '' !!}
{{ Form::label('phone', __('messages.common.price') . ':', ['class' => 'form-label']) }}
{{ formatCurrency($appointmentDetail->price, $currency->currency_icon) }}
@endif