@extends('layouts.partials.master') @section('title', 'Criar Nova Categoria') @push('styles') @endpush @section('content')
@include('layouts.components.section-title', ['title' => 'Criar nova categoria']) Voltar
@csrf @method('POST')
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif
@if(config('images.product_category_images.recommendedWidth')) Formatos: jpeg,png,jpg,gif; Medidas recomendadas: {{ config('images.product_category_images.recommendedWidth') }}px x {{ config('images.product_category_images.recommendedHeight') }}px @endif @if ($errors->has('image'))
{{ $errors->first('image') }}
@endif
@if(config('images.product_category_icons.recommendedWidth')) Formatos: jpeg,png,jpg,gif; Medidas recomendadas: {{ config('images.product_category_icons.recommendedWidth') }}px x {{ config('images.product_category_icons.recommendedHeight') }}px @endif @if ($errors->has('icon'))
{{ $errors->first('icon') }}
@endif
@if (!\App\Helpers\ModuleHelper::isModuleActive('module_automatic_translations')) @include('layouts.components.translation-create') @endif
@endsection