in this issue i tried to unwrap it by adding ! next verifiedLabel in viewDidLoad to become verifiedLabel!.text but the result is still printing Fatal error: Unexpectedly found nil while unwrapping an Optional value. Thank you
override func viewDidLoad() {
super.viewDidLoad()
verifiedLabel.text = "" }
self.verifiedLabel.text = user.isPhoneVerified ? "Verified" : "Not Verified" }