@extends('layouts.partials.master') @section('title', 'Produtos') @push('styles') @endpush @section('content')
@include('layouts.components.section-title', ['title' => 'Gerenciar Imagens']) Voltar
@include('layouts.components.alerts')
@csrf @method('POST')
@include('layouts.components.section-marker', ['section_name' => 'Produto', 'mt' => 'mt-0'])
{{ $product['name'] }}
@include('layouts.components.section-marker', ['section_name' => 'Imagem', 'mt' => 'mt-3'])
{{ $errors->first('image.*') }}
Formatos: jpeg,png,jpg,gif; Tamanho máximo: 50MB
@if(count($images) > 0)
@forelse($images as $image) @empty @endforelse
ID Imagem Ações
{{ $image->id }} Imagem
@csrf @method('DELETE')

{{ __('translations.no_results') }}

@endif
@include('layouts.components.confirmation-modal') @endsection