{!! Form::open(['route'=>'public.newcontact.save', 'method' => 'post','class' => 'newcontactform','id' => 'newcontact-form']) !!}
@if(session()->has('success'))
{{ session()->get('success') }}
@endif @if(session()->has('error'))
{{ session()->get('error') }}
@endif {!! apply_filters('pre_contact_form', null) !!}

{!! BaseHelper::clean(__('The field with (*) is required.')) !!}

@if($errors->has('frmcityname'))
{{ $errors->first('frmcityname') }}
@endif
@if ($errors->has('contact_name')) {{$errors->first('contact_name') }} @endif
@if ($errors->has('frmemail')) {{$errors->first('frmemail') }} @endif
@if ($errors->has('frmnumber')) {{$errors->first('frmnumber') }} @endif
@if ($errors->has('contact_content')) {{$errors->first('contact_content') }} @endif
{!! apply_filters('after_contact_form', null) !!}
{!! Form::close() !!}