footer.blade.php 521 B

12345678910111213
  1. @if (!$this->validated)
  2. <button type="submit" class="btn btn-success mr-3" wire:click.prevent="cancel()">Annulla</button>
  3. @else
  4. <button type="submit" class="btn btn-success mr-3" wire:click.prevent="cancel()">Chiudi</button>
  5. @endif
  6. @if ($add)
  7. <button type="submit" class="btn btn-primary py-3" wire:click.prevent="store()">Salva</button>
  8. @endif
  9. @if ($update)
  10. @if (!$this->validated)
  11. <button type="submit" class="btn btn-primary" wire:click.prevent="update(false)">Salva</button>
  12. @endif
  13. @endif