Merge branch 'master' of https://github.com/brkcvn/akaunting into code-clean

This commit is contained in:
Burak Civan
2022-08-22 09:29:55 +03:00
4 changed files with 7 additions and 4 deletions

View File

@@ -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"
/>

View File

@@ -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) }}