register.php 946B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?php
  2. return [
  3. 'title' => '회원가입',
  4. 'heading' => '회원가입',
  5. 'actions' => [
  6. 'login' => [
  7. 'before' => '또는',
  8. 'label' => '기존 계정으로 로그인',
  9. ],
  10. ],
  11. 'form' => [
  12. 'email' => [
  13. 'label' => '이메일',
  14. ],
  15. 'name' => [
  16. 'label' => '이름',
  17. ],
  18. 'password' => [
  19. 'label' => '비밀번호',
  20. 'validation_attribute' => '비밀번호',
  21. ],
  22. 'password_confirmation' => [
  23. 'label' => '비밀번호 확인',
  24. ],
  25. 'actions' => [
  26. 'register' => [
  27. 'label' => '회원가입',
  28. ],
  29. ],
  30. ],
  31. 'notifications' => [
  32. 'throttled' => [
  33. 'title' => '너무 많이 시도했습니다',
  34. 'body' => ':seconds 초 후에 다시 시도해 주세요.',
  35. ],
  36. ],
  37. ];