84 lines
4.0 KiB
PHP
84 lines
4.0 KiB
PHP
<x-app-layout>
|
|
<x-slot name="header">
|
|
<h2 class="font-semibold text-xl text-gray-800 leading-tight">
|
|
{{ $project->name }}: {{ __('Create AUK') }}
|
|
</h2>
|
|
</x-slot>
|
|
|
|
<div class="py-12">
|
|
<div class="max-w-7xl mx-auto sm:px-6 lg:px-8">
|
|
<div class="bg-white overflow-hidden shadow-sm sm:rounded-lg">
|
|
<div class="p-6 bg-white border-b border-gray-200">
|
|
<div class="w-96 mx-auto">
|
|
@if ($errors->any())
|
|
<div class="alert alert-danger text-red-500 p-2">
|
|
<ul class="list-unstyled alert alert-danger">
|
|
@foreach ($errors->all() as $error)
|
|
<li>{{ $error }}</li>
|
|
@endforeach
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
<form method="POST" action="{{ route('auks.store') }}">
|
|
@csrf
|
|
<!-- Document name -->
|
|
<div>
|
|
<x-label for="auk_name" :value="__('Title')" />
|
|
|
|
<x-input id="auk_name" class="block mt-1 w-full" type="text" name="auk_name"
|
|
:value="old('auk_name')" required autofocus />
|
|
</div>
|
|
|
|
<div>
|
|
<x-label for="auk_path" :value="__('Path')" />
|
|
|
|
<x-input id="auk_path" class="block mt-1 w-full" type="text" name="auk_path"
|
|
:value="old('auk_path')" required />
|
|
</div>
|
|
|
|
<div>
|
|
<x-label for="image_dir" :value="__('Image Dir')" />
|
|
|
|
<x-input id="image_dir" class="block mt-1 w-full" type="text" name="image_dir"
|
|
:value="old('image_dir')" required />
|
|
</div>
|
|
|
|
<div>
|
|
<x-label for="parent_id" :value="__('Parent AUK')" />
|
|
|
|
<x-select id="parent_id" class="block mt-1 w-full" name="parent_id" required>
|
|
<option value="0">---</option>
|
|
@foreach ($top_auks as $auks)
|
|
<option value="{{ $auks->id }}">{{ $auks->auk_name }}
|
|
({{ $auks->auk_path }})</option>
|
|
@if (count($auks->childs))
|
|
@include('auks.optionChild', [
|
|
'childs' => $auks->childs,
|
|
'level' => 1,
|
|
])
|
|
@endif
|
|
@endforeach
|
|
</x-select>
|
|
</div>
|
|
|
|
|
|
<div class="flex items-center justify-end mt-4">
|
|
<button
|
|
class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded-full">
|
|
<i class="fa fa-add pr-2"></i>{{ __('Create AUK') }}
|
|
</button>
|
|
<div class="pl-2">
|
|
<a href="{{ route('auks.index') }}"
|
|
class="btn bg-gray-500 hover:bg-gray-700 text-white font-bold py-2 px-4 rounded-full">
|
|
<i class="fa fa-cancel pr-2"></i>{{ __('Cancel') }}
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</x-app-layout>
|