Enquiry
{!! Form::open(['route'=>'public.newcontact.save', 'method' => 'post','class' => 'newcontactform','id'
=> 'newcontact-subform']) !!}
@if($errors->has('frmname'))
{{ $errors->first('frmname') }}
@endif
@if($errors->has('frmemail'))
{{ $errors->first('frmemail') }}
@endif
@if ($errors->has('frmnumber'))
{{$errors->first('frmnumber') }}
@endif
@if ($errors->has('frmmessage'))
{{$errors->first('frmmessage') }}
@endif
{!! Form::close() !!}