submit.blade.php 530 B

1234567891011121314151617
  1. <div class="row">
  2. <div class="@if(!($right ?? null)) offset-md-{{ $offset ?? 4 }} col-md-8 @endif">
  3. <button type="submit" class="btn btn-primary sbmt text-white">{{ $name ?? 'Сохранить' }}</button>
  4. </div>
  5. </div>
  6. @push('scripts')
  7. <script type="module">
  8. $('.sbmt').on('click', function (){
  9. $(this).addClass('d-none');
  10. setTimeout(function () {
  11. $('.sbmt').removeClass('d-none');
  12. },
  13. 2000);
  14. });
  15. </script>
  16. @endpush