form.blade.php 866 B

123456789101112131415161718192021
  1. <thead>
  2. <tr class="{{ $elementClass }} quick-create" style="cursor: pointer">
  3. <td colspan="{{ $columnCount }}" style="background: {{ Admin::color()->darken('#ededed', 1) }}">
  4. <span class="create cursor-pointer" style="display: block;">
  5. <i class="feather icon-plus"></i>&nbsp;{{ __('admin.quick_create') }}
  6. </span>
  7. <form class="form-inline create-form" style="display: none;" method="post">
  8. @foreach($fields as $field)
  9. &nbsp;{!! $field->render() !!}
  10. @endforeach
  11. &nbsp;
  12. &nbsp;
  13. <button type="submit" class="btn btn-primary btn-sm">{{ __('admin.submit') }}</button>&nbsp;
  14. &nbsp;
  15. <a href="javascript:void(0);" class="cancel">{{ __('admin.cancel') }}</a>
  16. {{ csrf_field() }}
  17. </form>
  18. </td>
  19. </tr>
  20. </thead>