@extends('layouts.partials.master') @section('title', 'Produtos do Cabaz') @push('styles') @endpush @section('content')
@include('layouts.components.section-title', ['title' => 'Adicionar Produto a Cabaz']) Voltar
@include('layouts.components.alerts')

Produto

Imagem

Nome: {{ $product->name }}
Categoria: {{ $product->category->name ?? null }}
Loja: {{ $product->store->commercial_name ?? null }}

Cabaz

Imagem

Título: {{ $bundle->title }}
Descrição: {{ $bundle->description }}

@csrf
@if ($errors->has('quantity'))
{{ $errors->first('quantity') }}
@endif
@foreach($attributes as $attribute)
@endforeach @if ($errors->has('attribute_values'))
{{ $errors->first('attribute_values') }}
@endif
@endsection