@extends('layouts.master') @section('contacts')
Contacts
@if (session('status')) @endif
@if ($message = Session::get('success'))
{{ $message }}
@endif
@csrf
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('description')) {{ $errors->first('description') }} @endif
{!! app('captcha')->display() !!} @if ($errors->has('g-recaptcha-response')) {{ $errors->first('g-recaptcha-response') }} @endif
@endsection @section('scripts') @endsection