9 lines
236 B
PHP
9 lines
236 B
PHP
<button id="form-reset" class="btn btn-outline-danger">@lang('Reset')</button>
|
|
|
|
@section('page-scripts')
|
|
<script>
|
|
$(document).ready(function() {
|
|
$('#form-reset').on('click',()=>$('#{{$form}}')[0].reset());
|
|
});
|
|
</script>
|
|
@append |