Uso el botón de tipo de radio en mi formulario:
<div class="d-block"> <div class="btn-group" role="group" aria-label="Basic example"> <button type="radio" name="type" value="rent" style="padding-right: 0 !important;" class="btn btn-lg btn-secondary pr-4 pl-0 active" id="left">{{ __('Rent') }}</button> <button type="radio" name="type" value="buy" style="padding-right: 0 !important;" class="btn btn-lg btn-light pr-4 pl-0" id="right">{{ __('Sale') }}</button> </div> </div>¿Cómo cambiar entre el botón Rent y Buy sin Enviar formulario?
Se supone que es input y no button .
<div class="d-block"> <div class="btn-group" role="group" aria-label="Basic example"> <input type="radio" name="type" value="rent" style="padding-right: 0 !important;" class="btn btn-lg btn-secondary pr-4 pl-0 active" id="left">{{ __('Rent') }}</input> <input type="radio" name="type" value="buy" style="padding-right: 0 !important;" class="btn btn-lg btn-light pr-4 pl-0" id="right">{{ __('Sale') }}</input> </div> </div>