@extends('layouts.partials.master') @section('title', 'Editar Reclamação') @push('styles') @endpush @section('content')
@include('layouts.components.section-title', ['title' => 'Editar Reclamação']) Voltar
@include('layouts.components.alerts')
@csrf @method('PUT')
@if($blocked) @endif @if ($errors->has('store_id'))
{{ $errors->first('store_id') }}
@endif
@if($blocked) @endif @if ($errors->has('product_uuid'))
{{ $errors->first('product_uuid') }}
@else @endif
@if($blocked) @endif @if ($errors->has('category_uuid'))
{{ $errors->first('category_uuid') }}
@endif
@if ($errors->has('status'))
{{ $errors->first('status') }}
@endif
@if($blocked) @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