@extends('layouts.generic') @section('page_title', __('Contact us')) @section('styles') @stop @section('content')

{{__("Contact us")}}

{{__("Don't hesitate to contact us for any matter. We will get back to you asap.")}}

@csrf @if(session('success')) @endif @if(session('error')) @endif
@if($errors->has('email')) {{$errors->first('email')}} @endif
@if($errors->has('subject')) {{$errors->first('subject')}} @endif
@if($errors->has('message')) {{$errors->first('message')}} @endif
@stop