123456789101112131415161718192021222324252627282930313233343536 |
- <div class="ibox float-e-margins">
- <div class="ibox-content" style="display: block;">
- {!! Form::model($about,['route' => ['admin.course.about.update',$about->id]
- , 'class' => 'form-horizontal'
- , 'role' => 'form'
- , 'method' => 'post'
- ,'id'=>'Category_form']) !!}
- @include('course_backend::about.form')
- {!! Form::close() !!}
- <!-- /.tab-content -->
- </div>
- </div>
- <script>
- $('#Category_form').ajaxForm({
- success: function (result) {
- if(!result.status)
- {
- swal(result.message, '', "error")
- }else{
- swal({
- title: "保存成功!",
- text: "",
- type: "success"
- }, function() {
- location = '';
- });
- }
- }
- });
- </script>
|