11 lines
373 B
PHP
11 lines
373 B
PHP
<button @if (isset($type))type="{{ $type }}"@else type="button"@endif class="btn btn-secondary cancel @if (isset($class)){{ $class }}@endif" @if (isset($id_name)) id="{{ $id_name }}"@endif>
|
|
<i class="fa fa-fw fa-ban"></i> {{ __('cancel') }}
|
|
</button>
|
|
|
|
@push('js')
|
|
<script>
|
|
$('.form-buttons .cancel').click(function() {
|
|
window.history.back();
|
|
})
|
|
</script>
|
|
@endpush |