when i try to edit a record, my form does not receive the full text, for example, if in my database I have the string "hello world" in my edit form it will just show me "hello"
edit function
public function edit($id)
{
$cooperado = Cooperado::find($id);
return view('cooperados.edit', compact('cooperado'));
}
edit form
<form method="post" action="{{ route('cooperados.update', $cooperado->id) }}">
<div class="form-group">
<label for="name">Nome :</label>
<input type="text" class="form-control" name="nameCoop" value={{ $cooperado->nameCoop }} />
</div>
<div class="form-group">
<label for="description">Observações :</label>
<input type="text" class="form-control" name="description" value={{ $cooperado->description }} />
</div>
</form>