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