9 lines
276 B
PHP
9 lines
276 B
PHP
<button type="cancel" id="cancel" {{ $attributes->class(['btn','btn-sm','btn-outline-dark']) }}>Cancel</button>
|
|
|
|
@section('page-scripts')
|
|
<script type="text/javascript">
|
|
$(document).ready(function() {
|
|
$('#cancel').on('click',()=>history.back());
|
|
});
|
|
</script>
|
|
@append |