How do I achive this in Bootstrap Studio?

Is there an easy way to achieve this in bootsrap studio or is manual the only way?

<form>
  <div class="form-group row">
    <label for="staticEmail" class="col-sm-2 col-form-label">Email</label>
    <div class="col-sm-10">
      <input type="text" readonly class="form-control-plaintext" id="staticEmail" value="email@example.com">
    </div>
  </div>
  <div class="form-group row">
    <label for="inputPassword" class="col-sm-2 col-form-label">Password</label>
    <div class="col-sm-10">
      <input type="password" class="form-control" id="inputPassword" placeholder="Password">
    </div>
  </div>
</form>

https://getbootstrap.com/docs/4.1/components/forms/#readonly-plain-text

Thanks

You'll most likely need to do that manually, but by the looks of it, that shoudn't take but a handful of minutes to throw together.