1
0
Fork 0

Adding Profession Import (without specified character)

This commit is contained in:
Henrik Hautakoski 2021-09-01 15:17:00 +02:00
parent aa2b27bc50
commit 3692fcc485
4 changed files with 152 additions and 0 deletions

View file

@ -0,0 +1,29 @@
<x-layout name="app">
<x-slot name="title">
<div class="flex">
{{ __('Import Profession') }}
</div>
</x-slot>
<div class="p-4">
<p class="text-center">
<strong>{{ __("Important") }}!</strong>
{{ __('Download this') }}
<x-link href="https://www.curseforge.com/wow/addons/professions-exporter" target="_blank">{{ __('addon') }}</x-link>
{{ __('to generate the import string') }}
</p>
<x-form action="{{ route('profession.store') }}">
<div class="mb-2">
<x-form.label for="data">{{ __('Import string') }}</x-form.label>
<x-textarea class="h-64" name="data" />
</div>
<div class="mt-2">
<x-button element="input" type="submit" value="{{ __('Import') }}" />
</div>
</x-form>
</div>
</x-layout>