Is there any way to select the value of a select and send it in the form?
<td>
<select name="confirmar" id="confirmar" class=" form-control" required>
<option value="valor1">Pendiente</option>
<option value="valor2">revisado</option>
</select>
</td>
<td>
<form action="{{action('CuentaController@destroy', $usuario->id)}}" method="post">
{{csrf_field()}}
<button class="btn btn-danger btn-xs" type="submit"><span class="glyphicon glyphicon-trash"></span></button>
</form>
</td>
As I have it here I would not know how to include that value in the form.