/ resources / views / livewire / tasks / task / comment / update.blade.php
update.blade.php
 1  <div class="flex flex-col w-full p-4 space-y-4 rounded shadow bg-gray-50">
 2  
 3      <div class="grid grid-cols-2 gap-4 sm:grid-cols-2">
 4  
 5          <div class="col-span-2">
 6              <x-textarea wire:model="comment" label="{{ __('tasks.comment.panel.form.comment') }}" />
 7          </div>
 8  
 9      </div>
10  
11      <x-panel.actions action="update" />
12  
13  </div>