@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
@if ($errors->has('weight'))
{{ $errors->first('weight') }}
@endif
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif
@if ($errors->has('about'))
{{ $errors->first('about') }}
@endif
{{ $errors->first('image') }}
@include('layouts.components.translation-create')

@endsection