Here is my dilemma - I am trying to align my buttons within the div. Unfortunately, the CSS I have attempted so far has not worked out as expected. Surprisingly, I am currently not using any custom CSS for this particular div.
Below is a snippet of my blade file:
<td>
<div class="container">
<form method="POST" action="{{ route('users.destroy',$user->id) }}">
{{ csrf_field() }}
{{ method_field('delete') }}
<button type="submit" class="btn btn-danger"><i class="fa fa-trash-o" aria-hidden="true"></i></button>
</form>
<a href="{{ route('users.show', $user->id) }}"><button type="button" class="btn btn-primary"><i class="fa fa-info-circle" aria-hidden="true"></i></button></a>
<a href="{{ route('users.edit', $user->id) }}"><button type="button" class="btn btn-warning"><i class="fa fa-pencil-square-o" aria-hidden="true"></i></button></a>
</div>
</td>
Click here to see the final layout