I want to create group buttons like this example https://getbootstrap.com/docs/4.3/components/button-group/
May 24, 2019
2
Level 6
bootstrap 4.3 btn group not working
When I try class="btn-group" the buttons aren't joined anymore. They are separate.
<div class="btn-toolbar justify-content-between">
<form action="{{ route('orders.destroy', ['id' => $order->id]) }}" method="post">
{{ method_field('UPDATE') }}
{{ csrf_field() }}
<div class="btn-group-sm">
<button type="submit" class="btn btn-success">ok</button>
</div>
</form>
<form action="{{ route('orders.destroy', ['id' => $order->id]) }}" method="post">
{{ method_field('UPDATE') }}
{{ csrf_field() }}
<div class="btn-group-sm">
<button type="submit" class="btn btn-danger">del</button>
</div>
</form>
</div>
Please or to participate in this conversation.
