CluPilotCloud/resources/views/livewire/admin/edit-plan-family.blade.php

17 lines
899 B
PHP

<div class="rounded-lg bg-surface p-6">
<div class="flex items-center justify-between">
<h3 class="text-base font-semibold text-ink">{{ __('plans.marketing_title') }}</h3>
<span class="rounded bg-surface-2 px-2 py-0.5 font-mono text-xs text-muted">{{ $family->name }}</span>
</div>
<div class="mt-4 rounded-lg border border-line bg-surface-2 p-4">
<x-ui.checkbox name="recommended" wire:model="recommended" :label="__('plans.recommended_label')" />
<p class="mt-1.5 pl-7 text-xs text-muted">{{ __('plans.recommended_hint') }}</p>
</div>
<div class="mt-6 flex justify-end gap-3">
<x-ui.button variant="secondary" x-on:click="Livewire.dispatch('closeModal')">{{ __('plans.cancel') }}</x-ui.button>
<x-ui.button variant="primary" wire:click="save" wire:loading.attr="disabled">{{ __('plans.save') }}</x-ui.button>
</div>
</div>