1234567891011121314151617181920212223242526272829303132333435 |
- <div class="ibox float-e-margins">
- <div class="ibox-content" style="display: block;">
- {!! Form::model($category,['route' => ['admin.category.update',$category->id]
- , 'class' => 'form-horizontal'
- , 'role' => 'form'
- , 'method' => 'post'
- ,'id'=>'Category_form']) !!}
- @include('course_backend::category.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 = '{{route('admin.course.category.index', ['id' => $category->group_id])}}';
- });
- }
- }
- });
- </script>
|