importAndExportClock.blade.php 1.2 KB

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <link href="{{ mix('css/app.css') }}" rel="stylesheet">
  7. </head>
  8. <body>
  9. <div class="card col-md-8 offset-md-2 mt-5">
  10. <div class="card-body">
  11. <form method="post" action="{{url('personnel/checking-in/userDutyCheck/storeClock')}}">
  12. @csrf
  13. <div class="form-group row">
  14. <label for="mobile_phone" class="form-check-label col-3 pull-right">手机号:</label>
  15. <input name="mobile_phone" id="mobile_phone" class="@error('mobile_phone') is-invalid @enderror col-7 form-control" type="text">
  16. </div>
  17. <input type="hidden" name="importAndExportQRCodeType" value="{{ old('importAndExportQRCodeType',$importAndExportQRCodeType)}}">
  18. <div class="form-group row pt-3">
  19. <button type="submit" class="col-7 offset-3 btn btn-success">提交</button>
  20. </div>
  21. </form>
  22. </div>
  23. </div>
  24. </body>
  25. </html>