{{-- info-section-form (info-section1) --}} {{-- Se podra agregar un titulo y desripcion personalizada para esta seccion, solo SI se configura por el panel(backend-template), la seccion1 con Sub-Sections/Element-subsection de ID=1, para la pagina Info(Contact-us/Customer-Support) --}} @php $section1 = null; if (isset($page_config)) { if (array_key_exists('seccion', $page_config)) { foreach ($page_config->seccion as $section) { if ($section->id == 1) { foreach ($section->element_seccion as $items) { if ($items->id == 1) { $section1 = $items; } } } } } } @endphp

{{ ($section1 && isset($section1->title->$localeSelected)) ? $section1->title->$localeSelected : '' }} {{--trans('info.form.title')--}}

@if($section1 && isset($section1->text))

{{ $section1->text->$localeSelected ?? '' }}

@endif
@include('shared.commons.form-support')
@section('extra-scripts') @parent {!! Html::script('js/form-support.js', [], (Request::secure())) !!} @stop