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-18 13:12:26 +00:00
|
|
|
<x-inputs.input placeholder="NODE_ENV" noDirty id="key" label="Name" required />
|
|
|
|
<x-inputs.input placeholder="production" noDirty id="value" label="Value" required />
|
2023-05-18 11:26:35 +00:00
|
|
|
<x-inputs.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-18 11:26:35 +00:00
|
|
|
<x-inputs.button type="submit">
|
2023-05-17 10:14:18 +00:00
|
|
|
Add
|
|
|
|
</x-inputs.button>
|
2023-05-04 20:29:14 +00:00
|
|
|
</div>
|
|
|
|
</form>
|