@extends('eventmie::layouts.app') @section('title') @lang('eventmie-pro::em.contact') @endsection @section('meta_title') @lang('eventmie-pro::em.contact') @endsection @section('meta_description', setting('site.site_name') ? setting('site.site_name') : config('app.name')) @section('meta_url', url()->current()) @section('content')
@if (\Session::has('msg'))
{{ \Session::get('msg') }}
@endif
@csrf @honeypot
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if ($errors->has('title'))
{{ $errors->first('title') }}
@endif
@if ($errors->has('message'))
{{ $errors->first('message') }}
@endif
@if (!empty(setting('recaptcha.site_key')) || !empty(setting('recaptcha.api_site_key')))
@error('g-recaptcha-response') {{ $message }} @enderror
@endif
@endsection @section('javascript') @stop