@extends('layout.front.app') @section('title', $data->translation->title) @section('description', filter_var($data->translation->description, FILTER_SANITIZE_STRING)) @section('content')
@yield('title')
@if (!empty($data->translation->description))
{!! $data->translation->description !!}
@endif

{{__('front.contact_form')}}

@if( $errors->all() ) @foreach ($errors->all() as $message)
{{ $message }}
@endforeach @endif
@csrf
@endsection