2022-06-15 16:19:37 +03:00
|
|
|
<x-layouts.admin>
|
2022-06-01 10:15:55 +03:00
|
|
|
<x-slot name="title">
|
|
|
|
{{ trans('modules.api_key') }}
|
|
|
|
</x-slot>
|
2019-11-16 10:21:14 +03:00
|
|
|
|
2022-06-15 16:19:37 +03:00
|
|
|
<x-slot name="content">
|
2022-06-01 10:15:55 +03:00
|
|
|
<x-form id="form-app" route="apps.api-key.store">
|
2022-08-03 10:44:44 +03:00
|
|
|
<x-form.section spacing-vertical="gap-y-2">
|
2022-08-03 10:38:33 +03:00
|
|
|
<x-slot name="body">
|
2022-06-01 10:15:55 +03:00
|
|
|
<x-form.group.text name="api_key" placeholder="{{ trans('general.form.enter', ['field' => trans('modules.api_key')]) }}" value="{{ setting('apps.api_key', null) }}" />
|
2019-11-16 10:21:14 +03:00
|
|
|
|
2022-08-03 10:38:33 +03:00
|
|
|
<div class="sm:col-span-6">
|
|
|
|
<div class="text-xs">
|
|
|
|
{!! trans('modules.get_api_key', ['url' => 'https://akaunting.com/dashboard']) !!}
|
|
|
|
</div>
|
2019-11-19 14:23:47 +03:00
|
|
|
</div>
|
2019-11-16 10:21:14 +03:00
|
|
|
|
2022-08-03 10:38:33 +03:00
|
|
|
<div class="sm:col-span-3">
|
|
|
|
<x-form.buttons cancel-route="apps.home.index" without-cancel />
|
|
|
|
</div>
|
|
|
|
</x-slot>
|
|
|
|
</x-form.section>
|
2022-06-01 10:15:55 +03:00
|
|
|
</x-form>
|
|
|
|
</x-slot>
|
2019-12-28 16:22:32 +03:00
|
|
|
|
2022-06-01 10:15:55 +03:00
|
|
|
<x-script folder="modules" file="apps" />
|
2022-06-15 16:19:37 +03:00
|
|
|
</x-layouts.admin>
|