{!! Form::label('name', 'Nombre:') !!}

{{ $tag->name }}

{!! Form::label('color', 'Color:') !!}

{!! ''.$tag->color.'' !!}

@foreach ($tag->custom_fields??[] as $custom_field_name=>$custom_field_value)
{!! Form::label($custom_field_name, Str::title(str_replace('_',' ',$custom_field_name)).":") !!}

{{ $custom_field_value }}

@endforeach
{!! Form::label('created_by', 'Creado por:') !!}

{{ $tag->createdBy->name }}

{!! Form::label('created_at', 'Creado:') !!}

{{ $tag->created_at }}

{!! Form::label('updated_at', 'Actualizado:') !!}

{{ $tag->updated_at }}