@extends('admin.layout.base') @section('content') @php $form = new \App\Http\Controllers\FormCtrl(); @endphp

Privacy policy

@if($object != NULL && isset($object->path)) PAGINA PUBBLICA @endif
@if(count($languages) > 1) @endif @for($l = 0; $l < count($languages); $l++) @php $lang_id = $languages[$l]->id; $boxlang = NULL; if($object != NULL && $l > 0) { $boxlang = isset($object->translations[$lang_id]) ? $object->translations[$lang_id] : NULL; } else if($object != NULL) $boxlang = $object; $boxClass = (!$languages[$l]->selected ? " displaynone" : ""); @endphp @if(count($languages) > 1)
@endif @php $value = str_replace('"', '"', ($boxlang != NULL ? $boxlang->testo : '')); echo $form->insertTextareaInputField("Testo", "testo_".$lang_id, $value, "", "#666666", ($l == 0), 0, 0, 30000, false, true, false); @endphp @if(count($languages) > 1)
@endif @endfor
@stop