displaying address in filament form
Forms\Components\View::make('same_shipping_notice')
->content(fn (Forms\Get $get) => '
<div class="space-y-1">
<strong>Same as shipping address:</strong>
<div>' . e($get('shipping_address')) . '</div>
<div>' . e($get('shipping_postal_code')) . ' ' . e($get('shipping_city')) . '</div>
<div>' . e($get('shipping_country')) . '</div>
</div>
')
->visible(fn (Forms\Get $get) => $get('use_shipping_address'))
->columnSpanFull(),Forms\Components\View::make('same_shipping_notice')
->content(fn (Forms\Get $get) => '
<div class="space-y-1">
<strong>Same as shipping address:</strong>
<div>' . e($get('shipping_address')) . '</div>
<div>' . e($get('shipping_postal_code')) . ' ' . e($get('shipping_city')) . '</div>
<div>' . e($get('shipping_country')) . '</div>
</div>
')
->visible(fn (Forms\Get $get) => $get('use_shipping_address'))
->columnSpanFull(),why is this not working