@extends('layouts.public') @section('title', __('Feedback & Grievance')) @section('meta_description', __('Submit feedback or raise a grievance about ABACO INFRA services or projects.')) @section('content')
@if (session('success')) {{ session('success') }} @endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @include('public.partials.honeypot', ['formId' => 'feedback']) @include('public.partials.captcha')
@endsection