See if this article helps: https://laraveldaily.com/post/laravel-vue-how-to-display-validation-errors
Aug 1, 2025
3
Level 6
Any way to pass Laravel's validation rules to Vue?
I'm trying to make a word counter in a textbox.
//StoreTodoRequest.php
public function rules(): array
{
return [
'name' => 'required|max:50',
];
}
// Vue
<textbox-limiter :limit=50 />
Is there any way to get the rules or is it better to just hardcode it?
Please or to participate in this conversation.