The company form currency field support all currencies and create automatic new currency!
This commit is contained in:
@@ -16,7 +16,7 @@
|
||||
|
||||
<x-form.group.email name="email" label="{{ trans('general.email') }}" />
|
||||
|
||||
<x-form.group.currency name="currency" />
|
||||
<x-form.group.currency name="currency" :options="$currencies" without-add-new />
|
||||
|
||||
<x-form.group.country />
|
||||
</x-slot>
|
||||
|
@@ -14,7 +14,7 @@
|
||||
|
||||
<x-form.group.email name="email" label="{{ trans('general.email') }}" />
|
||||
|
||||
<x-form.group.currency name="currency" selected="{{ ! empty($company->currency) ? $company->currency : config('setting.fallback.default.currency') }}" />
|
||||
<x-form.group.currency name="currency" :options="$currencies" selected="{{ ! empty($company->currency) ? $company->currency : config('setting.fallback.default.currency') }}" without-add-new />
|
||||
|
||||
<x-form.group.country />
|
||||
</x-slot>
|
||||
|
Reference in New Issue
Block a user