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