{"id":1645,"date":"2024-01-09T04:48:30","date_gmt":"2024-01-09T04:48:30","guid":{"rendered":"https:\/\/www.devopsfreelancer.com\/blog\/?p=1645"},"modified":"2024-02-05T05:09:47","modified_gmt":"2024-02-05T05:09:47","slug":"password-change-validation-using-jquery-in-laravel","status":"publish","type":"post","link":"https:\/\/www.devopsfreelancer.com\/blog\/password-change-validation-using-jquery-in-laravel\/","title":{"rendered":"Password change validation using jquery in Laravel"},"content":{"rendered":"\n<p>To implement password change validation using jQuery in Laravel, you can follow these steps. Here&#8217;s a basic example:<\/p>\n\n\n\n<p>put below code in blade page<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;form method=\"post\" id=\"sample_form\"\r\n    class=\"form-horizontal\" enctype=\"multipart\/form-data\"\r\n    onsubmit=\"return check()\">\r\n    @csrf\r\n    &lt;div class=\"form-group\" id=\"name_form\">\r\n        &lt;label class=\"control-label\">Name: &lt;\/label>\r\n        &lt;input type=\"text\" name=\"name\"\r\n            id=\"name\" class=\"form-control\" \/>\r\n    &lt;\/div>\r\n    &lt;!-- password show and hide open -->\r\n    &lt;div class=\"form-group\" id=\"name_form\">\r\n        &lt;label>Password&lt;\/label>\r\n        &lt;div class=\"input-group\" id=\"show_hide_password\">\r\n            &lt;input class=\"form-control input-group-addon\"\r\n                type=\"password\" name=\"password\"\r\n                id=\"password_user\">\r\n            &lt;div class=\"input-group-addon\">\r\n                &lt;a href=\"\">&lt;button\r\n                        class=\"btn btn-light border\">&lt;i\r\n                            class=\"fa fa-eye-slash\"\r\n                            aria-hidden=\"true\">&lt;\/i>&lt;\/button>&lt;\/a>\r\n            &lt;\/div>\r\n        &lt;\/div>\r\n    &lt;\/div>\r\n    &lt;!-- password show and hide close -->\r\n    &lt;!--cornfirm password show and hide open -->\r\n    &lt;div class=\"form-group\" id=\"name_form\">\r\n        &lt;label>Confirm Password&lt;\/label>\r\n        &lt;div class=\"input-group\">\r\n            &lt;input class=\"form-control\" type=\"password\"\r\n                name=\"password\" id=\"confirm_password\">\r\n        &lt;\/div>\r\n        &lt;span id='message'>&lt;\/span>\r\n    &lt;\/div>\r\n    &lt;!-- cornfirm password show and hide close -->\r\n    &lt;input type=\"hidden\" value=\"{{ Auth::user()->id }}\"\r\n        name=\"admin_id\" id=\"admin_id\" \/>\r\n    &lt;input type=\"hidden\"\r\n        value=\"{{ Auth::user()->email }}\"\r\n        name=\"admin_email\" id=\"admin_email\" \/>\r\n    &lt;!-- for account admin below value fo id and email will be null but when manager or user will store it it will get value by auth -->\r\n    &lt;input type=\"hidden\"\r\n        value=\"{{ Auth::user()->email }}\" name=\"email\">\r\n    &lt;input type=\"hidden\" value=\"{{ date('d-m-y') }}\"\r\n        name=\"daymonth\">\r\n    &lt;input type=\"hidden\" value=\"null\" name=\"user_id\"\r\n        id=\"user_id\">\r\n    &lt;input type=\"hidden\" value=\"null\"\r\n        name=\"user_email\" id=\"user_email\">\r\n    &lt;input type=\"hidden\" value=\"\" name=\"slugname\">\r\n    &lt;input type=\"hidden\" value=\"\" name=\"slug_id\">\r\n&lt;\/div>\r\n&lt;div class=\"form-group text-center\">\r\n&lt;input type=\"hidden\" name=\"action\" id=\"action\" \/>\r\n&lt;input type=\"hidden\" name=\"hidden_id\" id=\"hidden_id\" \/>\r\n&lt;input type=\"submit\" name=\"action_button\"\r\n    id=\"action_button\"\r\n    class=\"btn btn-warning float-center\" value=\"Add\" \/>\r\n&lt;\/div>\r\n&lt;\/form>\r\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">put below code in script tag<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code> &lt;script>\r\n    $('#confirm_password').on('keyup', function() {\r\n        if ($(this).val() == $('#password_user').val()) {\r\n            $('#message').html('Password matched').css('color', 'green');\r\n        } else $('#message').html('Password not matching').css('color', 'red');\r\n    });\r\n    &lt;\/script><\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Next go to update function and put below code<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>$('#sample_form').on('submit', function(event) {\r\n    event.preventDefault();\r\n    \/\/ Check if passwords match\r\n    if ($('#confirm_password').val() != $('#password_user').val()) {\r\n        \/\/ Display an error message or take appropriate action\r\n        $('#message').html('Password not matching').css('color', 'red');\r\n        return;\r\n    }\r\n    \/\/ data add working on submit button\r\n    \/\/ update button wotking for updata data\r\n    if ($('#action').val() == \"Update\") {\r\n        console.log('update button pe click ho rha hai');\r\n        $.ajax({\r\n            url: \"{{ url('viewprofile\/update') }}\",\r\n            type: \"POST\",\r\n            data: new FormData(this),\r\n            contentType: false,\r\n            cache: false,\r\n            processData: false,\r\n            dataType: \"json\",\r\n            headers: {\r\n                \"Authorization\": \"Bearer \" + localStorage.getItem('a_u_a_b_t')\r\n            },\r\n            \/\/ message alert open\r\n            success: function(data) {\r\n                var html = '';\r\n                if (data.success) {\r\n                    html = '&lt;div class=\"alert alert-success\">' + data.message +\r\n                        '&lt;\/div>';\r\n                    $('#form_result').html(html);\r\n                    setTimeout(function() {\r\n                        $('#user_formModal').modal('hide');\r\n                        location.reload(true);\r\n                    }, 2000);\r\n                } else {\r\n                    html = '&lt;div class=\"alert alert-danger\">' + data.message +\r\n                        '&lt;\/div>';\r\n                    $('#form_result').html(html);\r\n                }\r\n                \/\/ adding alert messages for success and exist data validation close\r\n            },\r\n            \/\/ message alert close\r\n            error: function(data) {\r\n                console.log('Error:', data);\r\n                \/\/    this function for hide with id #formModel\r\n                console.log('update function kamm nahi kr rha hai');\r\n            }\r\n        });\r\n    }\r\n});<\/code><\/pre>\n\n\n\n<p>Now update working successfully.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2024\/02\/image-8-1024x576.png\" alt=\"\" class=\"wp-image-1646\" srcset=\"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2024\/02\/image-8-1024x576.png 1024w, https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2024\/02\/image-8-300x169.png 300w, https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2024\/02\/image-8-768x432.png 768w, https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2024\/02\/image-8.png 1366w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>To implement password change validation using jQuery in Laravel, you can follow these steps. Here&#8217;s a basic example: put below code in blade page put below code&#8230; <\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[25],"tags":[3,664,665],"class_list":["post-1645","post","type-post","status-publish","format-standard","hentry","category-laravel","tag-laravel","tag-laravel-update-function","tag-password-update-function"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Password change validation using jquery in Laravel - DevOps Freelancer<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.devopsfreelancer.com\/blog\/password-change-validation-using-jquery-in-laravel\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Password change validation using jquery in Laravel - DevOps Freelancer\" \/>\n<meta property=\"og:description\" content=\"To implement password change validation using jQuery in Laravel, you can follow these steps. Here&#8217;s a basic example: put below code in blade page put below code...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.devopsfreelancer.com\/blog\/password-change-validation-using-jquery-in-laravel\/\" \/>\n<meta property=\"og:site_name\" content=\"DevOps Freelancer\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/amitsthakurs\/\" \/>\n<meta property=\"article:published_time\" content=\"2024-01-09T04:48:30+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-02-05T05:09:47+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2024\/02\/image-8-1024x576.png\" \/>\n<meta name=\"author\" content=\"Amit Kumar\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/amits_thakurs\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Amit Kumar\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/password-change-validation-using-jquery-in-laravel\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/password-change-validation-using-jquery-in-laravel\\\/\"},\"author\":{\"name\":\"Amit Kumar\",\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/#\\\/schema\\\/person\\\/22ed4bd82dc04200a2ca541b3e35fc5b\"},\"headline\":\"Password change validation using jquery in Laravel\",\"datePublished\":\"2024-01-09T04:48:30+00:00\",\"dateModified\":\"2024-02-05T05:09:47+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/password-change-validation-using-jquery-in-laravel\\\/\"},\"wordCount\":51,\"commentCount\":1,\"image\":{\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/password-change-validation-using-jquery-in-laravel\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/02\\\/image-8-1024x576.png\",\"keywords\":[\"laravel\",\"laravel-update-function\",\"password-update-function\"],\"articleSection\":[\"Laravel\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/password-change-validation-using-jquery-in-laravel\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/password-change-validation-using-jquery-in-laravel\\\/\",\"url\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/password-change-validation-using-jquery-in-laravel\\\/\",\"name\":\"Password change validation using jquery in Laravel - DevOps Freelancer\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/password-change-validation-using-jquery-in-laravel\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/password-change-validation-using-jquery-in-laravel\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/02\\\/image-8-1024x576.png\",\"datePublished\":\"2024-01-09T04:48:30+00:00\",\"dateModified\":\"2024-02-05T05:09:47+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/#\\\/schema\\\/person\\\/22ed4bd82dc04200a2ca541b3e35fc5b\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/password-change-validation-using-jquery-in-laravel\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/password-change-validation-using-jquery-in-laravel\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/password-change-validation-using-jquery-in-laravel\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/02\\\/image-8.png\",\"contentUrl\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/02\\\/image-8.png\",\"width\":1366,\"height\":768},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/password-change-validation-using-jquery-in-laravel\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Password change validation using jquery in Laravel\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/\",\"name\":\"DevOps Freelancer\",\"description\":\"We provide DevOps | SRE | DevSecOps | MLOps Freelancing\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/#\\\/schema\\\/person\\\/22ed4bd82dc04200a2ca541b3e35fc5b\",\"name\":\"Amit Kumar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d76fb4d0f15f7a458f1fd91063b44fbb7e7eb9e724b1c465d885054c2540250f?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d76fb4d0f15f7a458f1fd91063b44fbb7e7eb9e724b1c465d885054c2540250f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d76fb4d0f15f7a458f1fd91063b44fbb7e7eb9e724b1c465d885054c2540250f?s=96&d=mm&r=g\",\"caption\":\"Amit Kumar\"},\"description\":\"Hi I am Amit Kumar Thakur Experienced as s Software Developer with a demonstrated history of working in the information technology and services industry. Skilled in HTML, CSS, Bootstrap4, PHP, Laravel-9 , REST API,FB API,Google API, Youtube Api, Bitbucket,Github,Linux and jQuery. Strong engineering professional focused in Computer\\\/Information Technology Administration and Management. Currently my profile is to Software Developer, analyze the requirement, creating frame for web application, coding and maintenance.\",\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/amitsthakurs\\\/\",\"https:\\\/\\\/www.instagram.com\\\/amits_thakurs\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/amits-thakurs\\\/\",\"https:\\\/\\\/x.com\\\/https:\\\/\\\/twitter.com\\\/amits_thakurs\"],\"url\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/author\\\/amit\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Password change validation using jquery in Laravel - DevOps Freelancer","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.devopsfreelancer.com\/blog\/password-change-validation-using-jquery-in-laravel\/","og_locale":"en_US","og_type":"article","og_title":"Password change validation using jquery in Laravel - DevOps Freelancer","og_description":"To implement password change validation using jQuery in Laravel, you can follow these steps. Here&#8217;s a basic example: put below code in blade page put below code...","og_url":"https:\/\/www.devopsfreelancer.com\/blog\/password-change-validation-using-jquery-in-laravel\/","og_site_name":"DevOps Freelancer","article_author":"https:\/\/www.facebook.com\/amitsthakurs\/","article_published_time":"2024-01-09T04:48:30+00:00","article_modified_time":"2024-02-05T05:09:47+00:00","og_image":[{"url":"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2024\/02\/image-8-1024x576.png","type":"","width":"","height":""}],"author":"Amit Kumar","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/amits_thakurs","twitter_misc":{"Written by":"Amit Kumar","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.devopsfreelancer.com\/blog\/password-change-validation-using-jquery-in-laravel\/#article","isPartOf":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/password-change-validation-using-jquery-in-laravel\/"},"author":{"name":"Amit Kumar","@id":"https:\/\/www.devopsfreelancer.com\/blog\/#\/schema\/person\/22ed4bd82dc04200a2ca541b3e35fc5b"},"headline":"Password change validation using jquery in Laravel","datePublished":"2024-01-09T04:48:30+00:00","dateModified":"2024-02-05T05:09:47+00:00","mainEntityOfPage":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/password-change-validation-using-jquery-in-laravel\/"},"wordCount":51,"commentCount":1,"image":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/password-change-validation-using-jquery-in-laravel\/#primaryimage"},"thumbnailUrl":"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2024\/02\/image-8-1024x576.png","keywords":["laravel","laravel-update-function","password-update-function"],"articleSection":["Laravel"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.devopsfreelancer.com\/blog\/password-change-validation-using-jquery-in-laravel\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.devopsfreelancer.com\/blog\/password-change-validation-using-jquery-in-laravel\/","url":"https:\/\/www.devopsfreelancer.com\/blog\/password-change-validation-using-jquery-in-laravel\/","name":"Password change validation using jquery in Laravel - DevOps Freelancer","isPartOf":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/password-change-validation-using-jquery-in-laravel\/#primaryimage"},"image":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/password-change-validation-using-jquery-in-laravel\/#primaryimage"},"thumbnailUrl":"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2024\/02\/image-8-1024x576.png","datePublished":"2024-01-09T04:48:30+00:00","dateModified":"2024-02-05T05:09:47+00:00","author":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/#\/schema\/person\/22ed4bd82dc04200a2ca541b3e35fc5b"},"breadcrumb":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/password-change-validation-using-jquery-in-laravel\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.devopsfreelancer.com\/blog\/password-change-validation-using-jquery-in-laravel\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.devopsfreelancer.com\/blog\/password-change-validation-using-jquery-in-laravel\/#primaryimage","url":"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2024\/02\/image-8.png","contentUrl":"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2024\/02\/image-8.png","width":1366,"height":768},{"@type":"BreadcrumbList","@id":"https:\/\/www.devopsfreelancer.com\/blog\/password-change-validation-using-jquery-in-laravel\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.devopsfreelancer.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Password change validation using jquery in Laravel"}]},{"@type":"WebSite","@id":"https:\/\/www.devopsfreelancer.com\/blog\/#website","url":"https:\/\/www.devopsfreelancer.com\/blog\/","name":"DevOps Freelancer","description":"We provide DevOps | SRE | DevSecOps | MLOps Freelancing","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.devopsfreelancer.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.devopsfreelancer.com\/blog\/#\/schema\/person\/22ed4bd82dc04200a2ca541b3e35fc5b","name":"Amit Kumar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/d76fb4d0f15f7a458f1fd91063b44fbb7e7eb9e724b1c465d885054c2540250f?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/d76fb4d0f15f7a458f1fd91063b44fbb7e7eb9e724b1c465d885054c2540250f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d76fb4d0f15f7a458f1fd91063b44fbb7e7eb9e724b1c465d885054c2540250f?s=96&d=mm&r=g","caption":"Amit Kumar"},"description":"Hi I am Amit Kumar Thakur Experienced as s Software Developer with a demonstrated history of working in the information technology and services industry. Skilled in HTML, CSS, Bootstrap4, PHP, Laravel-9 , REST API,FB API,Google API, Youtube Api, Bitbucket,Github,Linux and jQuery. Strong engineering professional focused in Computer\/Information Technology Administration and Management. Currently my profile is to Software Developer, analyze the requirement, creating frame for web application, coding and maintenance.","sameAs":["https:\/\/www.facebook.com\/amitsthakurs\/","https:\/\/www.instagram.com\/amits_thakurs\/","https:\/\/www.linkedin.com\/in\/amits-thakurs\/","https:\/\/x.com\/https:\/\/twitter.com\/amits_thakurs"],"url":"https:\/\/www.devopsfreelancer.com\/blog\/author\/amit\/"}]}},"_links":{"self":[{"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/posts\/1645","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/comments?post=1645"}],"version-history":[{"count":1,"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/posts\/1645\/revisions"}],"predecessor-version":[{"id":1647,"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/posts\/1645\/revisions\/1647"}],"wp:attachment":[{"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/media?parent=1645"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/categories?post=1645"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/tags?post=1645"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}