@extends('layouts.app') @section('content')

CONTACT US

@if (session('status')) @endif @if ($message = Session::get('success'))
{{ $message }}
@endif
@csrf
@if ($errors->has('fname'))
{{ $errors->first('fname') }}
@endif
@if ($errors->has('sname'))
{{ $errors->first('sname') }}
@endif
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif
{!! NoCaptcha::display(['data-theme' => 'dark']) !!} @if ($errors->has('g-recaptcha-response'))
{{ $errors->first('g-recaptcha-response') }}
@endif
@foreach ($contacts as $key => $categoryGroup)

{{ $key }}

@foreach ($categoryGroup as $category) {{ $category->name }} @endforeach
@endforeach
@endsection @section('scripts') @endsection