@extends('layouts.partials.master') @section('title', 'Produtos') @push('styles') @endpush @section('content')
@include('layouts.components.section-title', ['title' => 'Criar Novo Produto']) Voltar
@csrf @method('POST')
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('category_id'))
{{ $errors->first('category_id') }}
@endif
@if ($errors->has('store_id'))
{{ $errors->first('store_id') }}
@endif
@if ($errors->has('status'))
{{ $errors->first('status') }}
@endif
@if ($errors->has('has_variants'))
{{ $errors->first('has_variants') }}
@endif
URL do produto numa loja externa onde o cliente pode comprar. Se preenchido, o produto não pode ser adicionado ao carrinho neste marketplace. @if ($errors->has('external_purchase_link'))
{{ $errors->first('external_purchase_link') }}
@endif
@if ($errors->has('product_type'))
{{ $errors->first('product_type') }}
@endif
@if ($errors->has('product_oversize'))
{{ $errors->first('product_oversize') }}
@endif
@if ($errors->has('weight'))
{{ $errors->first('weight') }}
@endif
@if ($errors->has('quantity'))
{{ $errors->first('quantity') }}
@endif
@if ($errors->has('buy_together'))
{{ $errors->first('buy_together') }}
@endif
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif
@if ($errors->has('about'))
{{ $errors->first('about') }}
@endif
@if(config('images.product_main_images.recommendedWidth')) Formatos: jpeg,png,jpg,gif; Medidas recomendadas: {{ config('images.product_main_images.recommendedWidth') }}px x {{ config('images.product_main_images.recommendedHeight') }}px @endif
{{ $errors->first('image') }}
@if (!\App\Helpers\ModuleHelper::isModuleActive('module_automatic_translations')) @include('layouts.components.translation-create') @endif

@endsection @push('scripts') @vite('resources/js/prd_products/form.js') @endpush