Into my edit.blade.php, i can display the value into my input like this for prepare my update:
<div>
<x-label for="name" value="name" />
<x-input id="name" name="name" :value="$user->name" />
<x-label for="email" value="email" />
<x-input id="email" value="email" :value="$user->email" />
</div>
This works but that code not :
<label name="name" id="name" class="bg-white text-gray-600 px-1">Name</label>
<input name="name" id="name" {{ $user->name }} autocomplete="false" tabindex="0" type="text" class="py-1 px-1 text-gray-900 outline-none block h-full w-full">
I want just to use input and not x-input.
What are the differents ?
How can i display my value into my input ?
I found that but for 9 years it has to evolve, no ?