@extends('site.layouts.app') @section('title',Request()->settings->settings_website) @section('contents')

Contact Us

Keep in touch

Phone

{{ Request()->settings->settings_phone }}

@if(!empty(Request()->settings->settings_phone2))

{{ Request()->settings->settings_phone2 }}

@endif

E-mail

{{ Request()->settings->settings_email }}

@if(!empty(Request()->settings->settings_email2))

{{ Request()->settings->settings_email2 }}

@endif

Address

{{ Request()->settings->settings_address }}

Do you have any question?

@csrf
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if($errors->has('phone'))
{{ $errors->first('phone') }}
@endif
@if($errors->has('subject'))
{{ $errors->first('subject') }}
@endif
@if($errors->has('message'))
{{ $errors->first('message') }}
@endif
@endsection