/ resources / views / livewire / protection-profile / create.blade.php
create.blade.php
 1  <div class="flex flex-col w-full p-4 space-y-4 rounded shadow bg-gray-50">
 2      <div class="grid grid-cols-1 gap-4 sm:grid-cols-1">
 3  
 4          <x-input wire:model.lazy="protectionProfile.name"
 5              placeholder="{{ __('protection-profiles.panel.form.placeholders.name') }}"
 6              label="{{ __('protection-profiles.panel.form.name') }}" />
 7  
 8  
 9          <x-textarea wire:model.lazy="protectionProfile.description"
10              placeholder="{{ __('protection-profiles.panel.form.placeholders.description') }}"
11              label="{{ __('protection-profiles.panel.form.description') }}" />
12      </div>
13  
14      <x-panel.actions action="create" />
15  </div>