2023-05-22 22:30:33 +02:00
|
|
|
<form wire:submit.prevent='submit' class="flex flex-col max-w-fit">
|
2023-06-05 12:07:55 +02:00
|
|
|
<div class="flex items-end justify-center gap-2">
|
2023-05-25 14:05:44 +02:00
|
|
|
<x-forms.input placeholder="NODE_ENV" noDirty id="key" label="Name" required />
|
|
|
|
<x-forms.input placeholder="production" noDirty id="value" label="Value" required />
|
2023-06-05 12:07:55 +02:00
|
|
|
<x-forms.checkbox noDirty class="flex-col text-center w-96" id="is_build_time" label="Build Variable?" />
|
2023-05-25 14:05:44 +02:00
|
|
|
<x-forms.button type="submit">
|
2023-06-05 12:07:55 +02:00
|
|
|
Add New Variable
|
2023-05-25 14:05:44 +02:00
|
|
|
</x-forms.button>
|
2023-05-04 22:29:14 +02:00
|
|
|
</div>
|
|
|
|
</form>
|