Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

teampoison's avatar

Vue Form Changes Not Reflacting (Backend Laravel)

I have one invoice management system. in this i edit email field to text field in one form. its reflect placeholder text but not input type="text" . still it's show error to add email field only.

https://i.ibb.co/gV5vqj4/2023-01-18-23-57-27-Window.png
<div class="col-md-6">
                        <div class="form-group">
                            <label for="email">
                                {{ $t('email') }}<sup class="text-size-20 top-1"></sup>
                            </label>
                            <app-input
                                id="email"
                                type="text"
                                :placeholder="$t('enter_client_email')"
                                v-model="formData.email"
                                :error-message="$errorMessage(errors, 'email')"
                            />
                        </div>
                    </div>

after the field you see the * icon but i already remove this from code but still show me error.

0 likes
1 reply
Ben Taylor's avatar

Do you have a type prop on the app-input component?

Please or to participate in this conversation.