@extends('layout') @section('title', 'Contact') @section('content')

{{ __('Contact') }}

@if($errors -> any()) @foreach($errors -> all() as $error)

{{ $error }}

@endforeach @endif
@csrf Name:
{!! $errors -> first('name', ':message') !!} Email:
{!! $errors -> first('email', ':message') !!} Subject:
{!! $errors -> first('subject', ':message') !!}
@endsection