I want to change the placeholder of a Laravel Nova Text field. Currently this is being overwritten by the $attribute in the model:
protected $attributes = [
'name' => 'Member Name',
];
The code below works, but isnt placeholder text, it actually fills the field.
Text::make('Name')
->rules('required', 'string')
->resolveUsing(function () {
return 'Name';
})
Is there a way I can change the placeholder text/override the $attribute value?
Secondly, any ideas why the lastpass icon appears on this field? Thanks
