在我的刀片中我有刀片提供的提交按钮,这是我的代码
{{ Form::submit('Create System User', array('class' => 'btn btn-primary')) }}
我想知道用户是否已经点击了提交按钮,因为我的代码如下所示
@if ($errors->any())
<ul>
{{ implode('', $errors->all('<p style="color:red" class="error">:message</p>')) }}
</ul>
@else
<script>
BootstrapDialog.alert('Record Added!');
</script>
@endif
我的问题是它是否继续在加载时显示引导警报,而它应该只是在用户成功创建任何想法时?