I am trying to change the way CakePHP posts are displayed. The following is a common template that it uses to display errors.
<div class="error-message">Please enter at least 3 characters.</div>
I want to create an error as shown below.
<label class="error">Please enter at least 3 characters.</label>
source
share