@extends('layouts.partials.master') @section('title', 'Catálogo') @push('styles') @endpush @section('content')
@include('layouts.components.section-title', ['title' => 'Criar Novo Atributo']) Voltar
@csrf @method('POST')
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('category_id'))
{{ $errors->first('category_id') }}
@endif
@include('layouts.components.translation-create')
@endsection