The form in the edit part does not display the value coming from the database. All other form fields are returning the value I get in the database. Here's how I'm doing:
<div class="col-md-3">
{!! Form::label('departamento','Departamento', array('class' => 'control-label')) !!}
{!! Form::select('departamento',[
'null' => 'Escolha uma Opção',
'jeans' => 'Jeans', 'senhores e senhoras' => 'Senhores e Senhoras',
'grupo de Louvor' => 'Grupo de Louvor', 'kids' => 'Kids',
'geral' => 'Geral',
],null,['class' => 'form-control']) !!}
</div>
As far as I know, the option passed in the Form :: select () parameter to NULL, is where the database data comes back. More is not coming back. What will happen is happening.