Display laravel validation errors with AJAX calls on every element separately

593 0 0 0

Last Updated : 2024-04-27 23:07:16

In this snippet I will teach you how to display laravel validation errors with AJAX calls on every element separately

Just use this snippet


if (data['add_response_errors']) {
$('#add_form').find('span').remove()
$.each( data['add_response_errors'] , function( key, value ) {
var el = $(document).find('[name="'+key+'"]');
el.after($('<span class="text-danger">'+value[0]+'</span>'));
});
}

Mahmoud Anwar

Mahmoud Anwar

Back End Developer with a passion for developing innovative web applications that expedite the efficiency and effectiveness of organizational success. Well-versed in technology and writing code to create systems that are reliable and user-friendly. Also has the proven ability to motivate, educate, and collaborate effectively to build web applications and effectively track changes. Confident communicator, strategic thinker, and innovative creator to develop software that is customized to meet a company’s organizational needs, highlight their core competencies, and further their success.