@extends('layouts.main') @section('seo') {{ __('app.contact_us') . " - " . config('app.name', 'Laravel') }} @endsection @section('extraCss') @endsection @section('content')

{{ __('app.contact_us') }}

{{ __('app.contact_intro') }}

@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 @if ($errors->has('g-recaptcha-response')) {{ $errors->first('g-recaptcha-response') }} @endif

{{ config('shop.company_name') }}

{{ config('shop.company_address') }}
{{ __('app.phone') }}: {{ config('shop.company_phone') }}
{{ __('app.fax') }}: {{ config('shop.company_fax') }}
{{ __('app.email') }}: {{ config('shop.company_email') }}
@endsection @section('extraJs') @endsection