Merge pull request #4688 from beganovich/v5-0114-remove-url-in-settings

(v5) Client portal: Remove URL validation from the website
This commit is contained in:
David Bomba 2021-01-15 08:33:09 +11:00 committed by GitHub
commit b72a4567db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,7 +16,7 @@ class NameWebsiteLogo extends Component
public $rules = [ public $rules = [
'name' => ['required', 'min:3'], 'name' => ['required', 'min:3'],
'website' => ['required', 'url'], 'website' => ['required'],
'phone' => ['required', 'string', 'max:255'], 'phone' => ['required', 'string', 'max:255'],
]; ];