13 lines
334 B
PHP
13 lines
334 B
PHP
@include('components.button', ['class' => 'btn-secondary cancel ' . ($class ?? ''), 'icon' => 'fa-ban', 'txt' => __('system.cancel')])
|
|
|
|
@push('js')
|
|
<script>
|
|
$('.form-buttons .cancel').click(function() {
|
|
@if (isset($url))
|
|
window.location = "{{ $url }}";
|
|
@else
|
|
window.history.back();
|
|
@endif
|
|
})
|
|
</script>
|
|
@endpush |