@extends('layouts.site') @section('content') @php($formErrors = $errors ?? new \Illuminate\Support\ViewErrorBag())

{{ trans('fp.LETS_MAKE_MAGIC') }}

{{ trans('fp.CONTACT_DESCRIPTION') }}

@csrf
@if ($formErrors->has('name'))

{{ $formErrors->first('name') }}

@endif
@if ($formErrors->has('email'))

{{ $formErrors->first('email') }}

@endif
@if ($formErrors->has('message'))

{{ $formErrors->first('message') }}

@endif

Follow us on Instagram, LinkedIn or Behance for the latest news & updates.

@endsection