Disable email input on reset page
This commit is contained in:
@ -30,8 +30,9 @@
|
||||
|
||||
<x-form.group.email
|
||||
name="email"
|
||||
:value="$email"
|
||||
:disabled="! is_null($email) ? true : false"
|
||||
label="{{ trans('general.email') }}"
|
||||
placeholder="{{ trans('general.email') }}"
|
||||
form-group-class="sm:col-span-6"
|
||||
input-group-class="input-group-alternative"
|
||||
/>
|
||||
|
@ -43,6 +43,7 @@
|
||||
name="{{ $name }}"
|
||||
id="{{ $id }}"
|
||||
value="{{ $value }}"
|
||||
disabled="{{ $disabled }}"
|
||||
placeholder="{{ $placeholder }}"
|
||||
v-model="{{ !empty($attributes['v-model']) ? $attributes['v-model'] : (!empty($attributes['data-field']) ? 'form.' . $attributes['data-field'] . '.' . $name : 'form.' . $name) }}"
|
||||
{{ $attributes->merge($custom_attributes) }}
|
||||
|
Reference in New Issue
Block a user