@if (session('status'))
{{ session('status') }}
@endif
@if (session('error'))
{{ session('error') }}
@endif
@include('catalog.products._images', ['product' => $product])
@include('catalog.products._labels', ['product' => $product])
@can('delete', $product)
{{ __('Delete this product') }}
{{ __('This cannot be undone. All of its images are removed as well.') }}
@endcan