@if ($title = $shortcode->title)
{!! BaseHelper::clean($title) !!}
@endif @if ($description = $shortcode->description) {!! BaseHelper::clean($description) !!} @endif
@if ($formTitle = $shortcode->form_title)

{!! BaseHelper::clean($formTitle) !!}

@endif {!! /** @var \Botble\Contact\Forms\Fronts\ContactForm $form **/ $form ->setFormInputWrapperClass('input-group') ->setFormInputClass('form-control ms-0 border rounded-2') ->setFormLabelClass('d-none') ->modify( 'submit', 'submit', \Botble\Base\Forms\FieldOptions\ButtonFieldOption::make() ->cssClass('btn btn-primary hover-up mt-4') ->label(__('Send Message') . BaseHelper::renderIcon('ti ti-arrow-right', attributes: ['class' => 'ms-2'])) ) ->renderForm() !!}
@if (count($tabs))
@foreach($tabs as $tab) @if ($tabTitle = Arr::get($tab, 'title'))
{!! BaseHelper::clean($tabTitle) !!}
@endif @if ($tabDescription = Arr::get($tab, 'description'))

{!! BaseHelper::clean($tabDescription) !!}

@endif @foreach(range(1, 3) as $index) @php $buttonLabel = Arr::get($tab, "button_label_{$index}"); $buttonUrl = Arr::get($tab, "button_url_{$index}"); $buttonIcon = Arr::get($tab, "button_icon_{$index}"); @endphp
$loop->last])> @if ($buttonLabel && $buttonUrl) @if ($buttonIcon) @endif {!! BaseHelper::clean($buttonLabel) !!} @endif
@endforeach @endforeach
@endif