|string> */ public function rules(): array { return [ 'name' => ['required', 'string'], 'address' => ['required', 'string'], 'phone' => ['required', 'string', 'regex:/^[0-9]+$/', 'min:12'], 'email' => ['required', 'email'], 'date_of_birth' => ['required', 'date'], 'photos' => ['image', 'mimes:jpeg,png,jpg,gif,svg', 'max:2048'], ]; } }