I have created a simple profile page where users can edit their profile information. I have placed a button at the end of the page. Initially, the form should be uneditable, but when the button is clicked, the form becomes editable. I attempted to use `disabled` in my HTML tags but it did not work. How can I resolve this issue?
<template>
<div>
<div class="container">
<div class="row gutters">
<div class="col-xl-3 col-lg-3 col-md-12 col-sm-12 col-12">
<div class="card h-100">
<div class="card-body">
<div class="account-settings">
<div class="user-profile">
<div class="user-avatar">
<img src="../../assets/people/a2.jpg" alt="Avatar" class="profile_avatar">
</div>
<h5 class="full_name">abc</h5>
<h6 class="email"><a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="b5d4d7d6f5d0d8d4dcd99bdac7d2">[email protected]</a></h6>
</div>
</div>
</div>
</div>
</div>
<div class="col-xl-9 col-lg-9 col-md-12 col-sm-12 col-12">
<div class="card h-100">
<div class="card-body">
<div class="row gutters">
<div class="col-xl-12 col-lg-12 col-md-12 col-sm-12 col-12">
<h6 class="mb-2 text-primary">Profile Details</h6>
</div>
<div class="col-xl-6 col-lg-6 col-md-6 col-sm-6 col-12">
<div class="form-group">
<label for="first_name">First Name</label>
<input type="text" class="form-control" id="first_name" placeholder="First Name" disabled>
</div>
</div>
<div class="col-xl-6 col-lg-6 col-md-6 col-sm-6 col-12">
<div class="form-group">
<label for="last_name">Last Name</label>
<input type="text" class="form-control" id="last_name" placeholder="Last Name" disabled>
</div>
</div>
<!-- More form fields here -->
<div class="text-left">
<b-button variant="default" @click="editProfile"><i class="fa fa-pencil"></i> </b-button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</template>
These are my HTML codes. All form fields are currently disabled, and I want to enable them when the button is clicked.