@extends('livewire.forms.input-template') @section('auto-update') @parent @overwrite @section('pending') @parent @overwrite @section('render') @php $list=json_decode($input->value,true) @endphp @overwrite @section('display')

{{ $input->value }}

@overwrite @section('other') @if ($input->value != null) @php $list=json_decode($input->value,true) @endphp @forelse ($list['value'] as $element)

{{ $element }}

@empty @endforelse @endif @overwrite