{{ __('Contact Agency') }}
@if (! RealEstateHelper::hideAgentInfoInPropertyDetailPage() && ($account = $property->author))
@if ($account->phone && ! setting('real_estate_hide_agency_phone', false)) {{ $account->phone }} @elseif($hotline = theme_option('hotline')) {{ $hotline }} @endif @if ($account->email && ! setting('real_estate_hide_agency_email', false)) {{ $account->email }} @endif
@endif {!! apply_filters('property_right_details_info', null, $property) !!} {!! apply_filters('before_consult_form', null, $property) !!} {!! \Botble\RealEstate\Forms\Fronts\ConsultForm::create() ->formClass('contact-form') ->setFormInputWrapperClass('ip-group') ->modify('content', 'textarea', ['attr' => ['class' => 'form-control']]) ->modify('submit', 'submit', ['attr' => ['class' => 'tf-btn primary w-100']]) ->add('type', 'hidden', ['attr' => ['value' => 'property']]) ->add('data_id', 'hidden', ['attr' => ['value' => $property->getKey()]]) ->addBefore('content', 'data_name', 'text', ['label' => false, 'attr' => ['value' => $property->name, 'disabled' => true]]) ->renderForm() !!} {!! apply_filters('after_consult_form', null, $property) !!}