{!! Input::text('name', [
'attr' => [
'required' => 'required',
'placeholder' => 'Type Your Name',
'maxlength' => 50
],
'value' => $user->name,
]) !!}
{!! Input::email('email', [
'value' => $user->email,
'attr' => [
'maxlength' => 75,
'required' => 'required'
]
]) !!}
{!! Input::text('password', [
'attr' => [
'data-password' => 'true',
'placeholder' => 'Keep blank if you dont want to change',
'autocomplete' => 'off'
]
]) !!}
{!! Input::text('password_confirmation', [
'attr' => [
'data-password' => 'true',
'autocomplete' => 'off'
]
]) !!}