@extends('layouts.partials.master') @section('title', 'Criar Reclamação') @push('styles') @endpush @section('content')
@include('layouts.components.section-title', ['title' => 'Criar Reclamação']) Voltar
@csrf @method('POST')
@if ($errors->has('store_id'))
{{ $errors->first('store_id') }}
@endif
@if ($errors->has('product'))
{{ $errors->first('product') }}
@else @endif
@if ($errors->has('category'))
{{ $errors->first('category') }}
@endif
@if ($errors->has('status'))
{{ $errors->first('status') }}
@endif
@if ($errors->has('comment'))
{{ $errors->first('comment') }}
@endif
@if ($errors->has('resolution'))
{{ $errors->first('resolution') }}
@endif
@endsection @push('scripts') @vite('resources/js/adm_product_complaints/index.js') @endpush