2023-05-05 07:28:00 +00:00
|
|
|
<form wire:submit.prevent='submit' class="flex gap-2 px-2">
|
|
|
|
<x-inputs.input noLabel noDirty id="key" required />
|
|
|
|
<x-inputs.input noLabel noDirty id="value" required />
|
2023-05-04 20:29:14 +00:00
|
|
|
<div class="flex flex-col">
|
|
|
|
<div class="flex items-center gap-2">
|
|
|
|
<input type="checkbox" wire:model.defer="is_build_time" />
|
2023-05-05 07:28:00 +00:00
|
|
|
<label>Build Variable?</label>
|
2023-05-04 20:29:14 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<x-inputs.button type="submit">
|
|
|
|
Add
|
|
|
|
</x-inputs.button>
|
|
|
|
</form>
|