@extends('frontpage.layouts.main') @push('style') @endpush @section('content')

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

@csrf @method('POST') @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('description'))
{{ $errors->first('description')}}
@endif
@endsection @push('scripts') @endpush