@props([
'label',
'copy_what' => null,
'icon_type' => null,
'hide_if_null' => false,
'align' => 'left',
])
@if ($hide_if_null!='true')
@if (isset($icon_type))
@endif
{{ $label }}
merge(['style' => 'text-align: '.$align.' !important;']) }}>
@if ((!$slot->isEmpty()) && ($copy_what!=''))
{{ $slot }}
@elseif (!$slot->isEmpty())
{{ $slot }}
@else
{{ trans('general.no_value') }}
@endif
@endif